-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathLogMessageFormatter.cs
95 lines (58 loc) · 2.3 KB
/
LogMessageFormatter.cs
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
using System;
using System.Text;
namespace Gsemac.IO.Logging {
public class LogMessageFormatter :
ILogMessageFormatter {
// Public members
public string TimestampFormat { get; } = "HH:mm:ss";
public void SetColumnWidth(int index, int width) {
if (index < 0 || index >= columnWidths.Length)
throw new ArgumentOutOfRangeException(nameof(index));
if (width <= 0)
throw new ArgumentOutOfRangeException(nameof(width));
columnWidths[index] = width;
}
public string Format(ILogMessage message) {
StringBuilder sb = new StringBuilder();
string timestamp = FormatTimestamp(DateTime.Now).PadRight(columnWidths[0]).Substring(0, columnWidths[0]);
string source = FormatSource(message.Source).PadRight(columnWidths[1]).Substring(0, columnWidths[1]);
sb.Append(timestamp);
sb.Append(" ");
sb.Append(source);
sb.Append(" ");
sb.Append(FormatLogLevel(message.LogLevel));
sb.Append(" ");
sb.AppendLine(FormatMessage(message.Message));
if (message.Exception != null)
sb.AppendLine(FormatException(message.Exception));
return sb.ToString();
}
// Protected members
protected virtual string FormatTimestamp(DateTime dateTime) {
return dateTime.ToString(TimestampFormat);
}
protected virtual string FormatSource(string source) {
return source;
}
protected virtual string FormatLogLevel(LogLevel logLevel) {
switch (logLevel) {
case LogLevel.Debug:
return "[DEBUG]";
case LogLevel.Warning:
return "[WARN]";
case LogLevel.Error:
return "[ERROR]";
default:
return "[INFO]";
}
}
protected virtual string FormatMessage(string message) {
return message;
}
protected virtual string FormatException(Exception exception) {
return exception?.ToString();
}
// Private members
private readonly int[] columnWidths = new int[] { 8, 11 };
}
}