mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-07 05:35:41 +12:00
32 lines
924 B
C#
32 lines
924 B
C#
using System;
|
|
|
|
namespace HISP.Server
|
|
{
|
|
class Logger
|
|
{
|
|
public static void HackerPrint(string text) // When someone is obviously cheating.
|
|
{
|
|
ConsoleColor prevColor = Console.ForegroundColor;
|
|
Console.ForegroundColor = ConsoleColor.Red;
|
|
Console.WriteLine("[HACK] " + text);
|
|
Console.ForegroundColor = prevColor;
|
|
}
|
|
public static void DebugPrint(string text)
|
|
{
|
|
if (ConfigReader.Debug)
|
|
Console.WriteLine("[DEBUG] " + text);
|
|
}
|
|
public static void WarnPrint(string text)
|
|
{
|
|
Console.WriteLine("[WARN] " + text);
|
|
}
|
|
public static void ErrorPrint(string text)
|
|
{
|
|
Console.WriteLine("[ERROR] " + text);
|
|
}
|
|
public static void InfoPrint(string text)
|
|
{
|
|
Console.WriteLine("[INFO] " + text);
|
|
}
|
|
}
|
|
}
|