-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathLog.cs
53 lines (47 loc) · 1.1 KB
/
Log.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AtmoLight
{
public static class Log
{
public enum LogLevel
{
Debug,
Warn,
Info,
Error
}
public delegate void NewLogHandler(LogLevel logLevel, string format, params object[] args);
public static event NewLogHandler OnNewLog;
public static void Debug(string format, params object[] args)
{
if (OnNewLog != null)
{
OnNewLog(LogLevel.Debug, "AtmoLight: " + format, args);
}
}
public static void Warn(string format, params object[] args)
{
if (OnNewLog != null)
{
OnNewLog(LogLevel.Warn, "AtmoLight: " + format, args);
}
}
public static void Info(string format, params object[] args)
{
if (OnNewLog != null)
{
OnNewLog(LogLevel.Info, "AtmoLight: " + format, args);
}
}
public static void Error(string format, params object[] args)
{
if (OnNewLog != null)
{
OnNewLog(LogLevel.Error, "AtmoLight: " + format, args);
}
}
}
}