forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestLogger.cs
More file actions
133 lines (108 loc) · 4.17 KB
/
TestLogger.cs
File metadata and controls
133 lines (108 loc) · 4.17 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
using System;
using System.Collections.Generic;
namespace ServiceStack.Logging
{
/// <summary>
/// Tests logger which stores all log messages in a member list which can be examined later
///
/// Made public so its testable
/// </summary>
public class TestLogger : ILog {
/// <summary>
/// Initializes a new instance of the <see cref="TestLogger"/> class.
/// </summary>
/// <param name="type">The type.</param>
public TestLogger(string type) {
}
/// <summary>
/// Initializes a new instance of the <see cref="TestLogger"/> class.
/// </summary>
/// <param name="type">The type.</param>
public TestLogger(Type type) {
}
public enum Levels {
DEBUG,
ERROR,
FATAL,
INFO,
WARN,
};
static private List<KeyValuePair<Levels, string>> _logs = new List<KeyValuePair<Levels, string>>();
static public IList<KeyValuePair<Levels, string>> GetLogs() { return _logs; }
public bool IsDebugEnabled { get { return true; } }
/// <summary>
/// Logs the specified message.
/// </summary>
/// <param name="message">The message.</param>
/// <param name="exception">The exception.</param>
private static void Log(Levels level, object message, Exception exception) {
string msg = message == null ? string.Empty : message.ToString();
if(exception != null) {
msg += ", Exception: " + exception.Message;
}
_logs.Add(new KeyValuePair<Levels, string>(level, msg));
}
/// <summary>
/// Logs the format.
/// </summary>
/// <param name="message">The message.</param>
/// <param name="args">The args.</param>
private static void LogFormat(Levels level, object message, params object[] args) {
string msg = message == null ? string.Empty : message.ToString();
_logs.Add(new KeyValuePair<Levels, string>(level, string.Format(msg, args)));
}
/// <summary>
/// Logs the specified message.
/// </summary>
/// <param name="message">The message.</param>
private static void Log(Levels level, object message) {
string msg = message == null ? string.Empty : message.ToString();
_logs.Add(new KeyValuePair<Levels, string>(level, msg));
}
public void Debug(object message, Exception exception) {
Log(Levels.DEBUG, message, exception);
}
public void Debug(object message) {
Log(Levels.DEBUG, message);
}
public void DebugFormat(string format, params object[] args) {
LogFormat(Levels.DEBUG, format, args);
}
public void Error(object message, Exception exception) {
Log(Levels.ERROR, message, exception);
}
public void Error(object message) {
Log(Levels.ERROR, message);
}
public void ErrorFormat(string format, params object[] args) {
LogFormat(Levels.ERROR, format, args);
}
public void Fatal(object message, Exception exception) {
Log(Levels.FATAL, message, exception);
}
public void Fatal(object message) {
Log(Levels.FATAL, message);
}
public void FatalFormat(string format, params object[] args) {
LogFormat(Levels.FATAL, format, args);
}
public void Info(object message, Exception exception) {
Log(Levels.INFO, message, exception);
}
public void Info(object message) {
Log(Levels.INFO, message);
}
public void InfoFormat(string format, params object[] args) {
LogFormat(Levels.INFO, format, args);
}
public void Warn(object message, Exception exception) {
Log(Levels.WARN, message, exception);
}
public void Warn(object message) {
Log(Levels.WARN, message);
}
public void WarnFormat(string format, params object[] args) {
LogFormat(Levels.WARN, format, args);
}
}
}