forked from dotnet/samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogger.cs
70 lines (58 loc) · 1.49 KB
/
Logger.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
using System;
namespace DelegatesAndEvents
{
// Logger implementation two
// <SnippetSeverity>
public enum Severity
{
Verbose,
Trace,
Information,
Warning,
Error,
Critical
}
// </SnippetSeverity>
// <SnippetLoggerFinal>
public static class Logger
{
public static Action<string> WriteMessage;
public static Severity LogLevel {get;set;} = Severity.Warning;
public static void LogMessage(Severity s, string component, string msg)
{
if (s < LogLevel)
return;
var outputMsg = $"{DateTime.Now}\t{s}\t{component}\t{msg}";
WriteMessage(outputMsg);
}
}
// </SnippetLoggerFinal>
}
namespace ImplementationOne
{
// <SnippetFirstImplementation>
public static class Logger
{
public static Action<string> WriteMessage;
public static void LogMessage(string msg)
{
WriteMessage(msg);
}
}
// </SnippetFirstImplementation>
}
namespace ImplementationTwo
{
using DelegatesAndEvents;
// <SnippetLoggerTwo>
public static class Logger
{
public static Action<string> WriteMessage;
public static void LogMessage(Severity s, string component, string msg)
{
var outputMsg = $"{DateTime.Now}\t{s}\t{component}\t{msg}";
WriteMessage(outputMsg);
}
}
// </SnippetLoggerTwo>
}