-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogsLogsLogLine.java
More file actions
33 lines (30 loc) · 934 Bytes
/
Copy pathLogsLogsLogLine.java
File metadata and controls
33 lines (30 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
public class LogsLogsLogLine {
String logLine;
public LogLine(String logLine) {
this.logLine = logLine;
}
public LogLevel getLogLevel() {
String logString = this.logLine.substring(1,4);
switch(logString){
case "TRC":
return LogLevel.TRACE;
case "DBG":
return LogLevel.DEBUG;
case "INF":
return LogLevel.INFO;
case "WRN":
return LogLevel.WARNING;
case "ERR":
return LogLevel.ERROR;
case "FTL":
return LogLevel.FATAL;
default:
return LogLevel.UNKNOWN;
}
}
public String getOutputForShortLog() {
String logString = this.logLine.substring(7);
LogLevel logLvlType = this.getLogLevel();
return logLvlType.getTypeLog() + ":" + String.valueOf(logString);
}
}