13 lines
308 B
C#
13 lines
308 B
C#
namespace Млаумчерб.Клиент;
|
||
|
||
public class LauncherLogger : FileLogger
|
||
{
|
||
public static readonly IOPath LogsDirectory = "launcher_logs";
|
||
|
||
public LauncherLogger() : base(LogsDirectory, "млаумчерб")
|
||
{
|
||
#if DEBUG
|
||
DebugLogEnabled = true;
|
||
#endif
|
||
}
|
||
} |