You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OnlineMsgServer/Common/Log.cs

18 lines
360 B
C#

namespace OnlineMsgServer.Common
{
class Log
{
public static void Debug(string msg)
{
#if DEBUG
Console.WriteLine(msg);
#endif
}
public static void Security(string eventName, string details)
{
Console.WriteLine($"[SECURITY] {DateTime.UtcNow:O} {eventName} {details}");
}
}
}