-
Notifications
You must be signed in to change notification settings - Fork 5
/
Logger.cs
60 lines (52 loc) · 1.4 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
using System;
using System.Collections.Concurrent;
namespace FlexConfirmMail
{
public class QueueLogger
{
private static ConcurrentQueue<string> s_queue;
public static void Log(string message) => NoException(() => LogImpl(message));
public static void Log(Exception e) => NoException(() => LogImpl(e));
public static string[] Get()
{
try
{
Init();
return s_queue.ToArray();
}
catch
{
return new string[0];
}
}
private static void NoException(Action func)
{
try { func(); } catch { }
}
private static void Init()
{
if (s_queue is null)
{
s_queue = new ConcurrentQueue<string>();
}
}
private static void LogImpl(string message)
{
Init();
if (5000 < s_queue.Count + 1)
{
string throwaway;
s_queue.TryDequeue(out throwaway);
}
s_queue.Enqueue($"{GetTimestamp()} : {message}");
}
private static void LogImpl(Exception e)
{
LogImpl(e.ToString());
}
private static string GetTimestamp()
{
return DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
}
}
}