forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConsoleLogger.cs
More file actions
142 lines (120 loc) · 3.49 KB
/
ConsoleLogger.cs
File metadata and controls
142 lines (120 loc) · 3.49 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
134
135
136
137
138
139
140
141
142
#if !NETFX_CORE
using System;
namespace ServiceStack.Logging
{
/// <summary>
/// Default logger is to Console.WriteLine
///
/// Made public so its testable
/// </summary>
public class ConsoleLogger : ILog
{
const string DEBUG = "DEBUG: ";
const string ERROR = "ERROR: ";
const string FATAL = "FATAL: ";
const string INFO = "INFO: ";
const string WARN = "WARN: ";
/// <summary>
/// Initializes a new instance of the <see cref="DebugLogger"/> class.
/// </summary>
public ConsoleLogger(string type)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="DebugLogger"/> class.
/// </summary>
public ConsoleLogger(Type type)
{
}
public bool IsDebugEnabled { get; set; }
/// <summary>
/// Logs the specified message.
/// </summary>
private static void Log(object message, Exception exception)
{
var msg = message?.ToString() ?? string.Empty;
if (exception != null)
{
msg += ", Exception: " + exception.Message;
}
Console.WriteLine(msg);
}
/// <summary>
/// Logs the format.
/// </summary>
private static void LogFormat(object message, params object[] args)
{
string msg = message?.ToString() ?? string.Empty;
Console.WriteLine(msg, args);
}
/// <summary>
/// Logs the specified message.
/// </summary>
private static void Log(object message)
{
string msg = message?.ToString() ?? string.Empty;
Console.WriteLine(msg);
}
public void Debug(object message, Exception exception)
{
Log(DEBUG + message, exception);
}
public void Debug(object message)
{
Log(DEBUG + message);
}
public void DebugFormat(string format, params object[] args)
{
LogFormat(DEBUG + format, args);
}
public void Error(object message, Exception exception)
{
Log(ERROR + message, exception);
}
public void Error(object message)
{
Log(ERROR + message);
}
public void ErrorFormat(string format, params object[] args)
{
LogFormat(ERROR + format, args);
}
public void Fatal(object message, Exception exception)
{
Log(FATAL + message, exception);
}
public void Fatal(object message)
{
Log(FATAL + message);
}
public void FatalFormat(string format, params object[] args)
{
LogFormat(FATAL + format, args);
}
public void Info(object message, Exception exception)
{
Log(INFO + message, exception);
}
public void Info(object message)
{
Log(INFO + message);
}
public void InfoFormat(string format, params object[] args)
{
LogFormat(INFO + format, args);
}
public void Warn(object message, Exception exception)
{
Log(WARN + message, exception);
}
public void Warn(object message)
{
Log(WARN + message);
}
public void WarnFormat(string format, params object[] args)
{
LogFormat(WARN + format, args);
}
}
}
#endif