-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodLogging.cs
45 lines (41 loc) · 1.37 KB
/
modLogging.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
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XRFAgent
{
internal class modLogging
{
private static EventLog agentlog;
// TODO Create setting for Verbose logging
/// <summary>
/// Loads the logging module: Creates event log object
/// </summary>
public static void Load()
{
if (EventLog.SourceExists("XRFAgent") == false)
{
EventLog.CreateEventSource("XRFAgent", "Application");
}
agentlog = new EventLog();
agentlog.Source = "XRFAgent";
agentlog.Log = "Application";
}
/// <summary>
/// Unloading the logging module is NOT NEEDED
/// </summary>
public static void Unload() { }
/// <summary>
/// Writes an event to the Windows Event Log
/// </summary>
/// <param name="LogMessage">(string) Contents of the log message</param>
/// <param name="LogType">(EventLogEntryType) Severity of log message</param>
/// <param name="LogID">(int) Event ID or error code</param>
public static void LogEvent(string LogMessage, EventLogEntryType LogType, int LogID = 0)
{
agentlog.WriteEntry(LogMessage, LogType, LogID);
}
}
}