Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Enumerations/EventID.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ namespace SinclairCC.MakeMeAdmin
/// </summary>
public enum EventID : int
{
/// <summary>
/// The built-in service functionality uses Event ID 0 to log service start/stop events.
/// </summary>
ServiceStartStop,

/// <summary>
/// A user was added to the Administrators group.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion Logging/ApplicationLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class ApplicationLog
/// <summary>
/// The source name to use when writing events to the Event Log.
/// </summary>
private const string SourceName = "Make Me Admin";
private const string SourceName = "MakeMeAdmin";

/// <summary>
/// An EventLog object for interacting with this service's event log.
Expand Down