1 package gboat2.base.core.logging;
2
3 import gboat2.base.bridge.exception.DefaultBusinessNestedException;
4
5
6
7
8
9
10
11 public interface IBusinessLogService {
12
13
14
15
16
17
18 public void debug(BusinessLogEntry businessLogEntry) throws GboatLoggingException;
19
20
21
22
23
24
25 public void info(BusinessLogEntry businessLogEntry) throws GboatLoggingException;
26
27
28
29
30
31
32 public void warn(BusinessLogEntry businessLogEntry) throws GboatLoggingException;
33
34
35
36
37
38
39 public void error(BusinessLogEntry businessLogEntry) throws GboatLoggingException;
40
41
42
43
44
45
46
47 public void log(Level level, String operationType, String operation);
48
49
50
51
52
53
54
55
56 public void log(Level level, String operationType, String operation, String operationObject);
57
58
59
60
61
62
63
64
65
66 public void log(Level level, String operationType, String operation, String operationObject, String memo);
67
68 }