diff --git a/ArchiSteamFarm/Logging.cs b/ArchiSteamFarm/Logging.cs index 6273eabe0..eac99928c 100644 --- a/ArchiSteamFarm/Logging.cs +++ b/ArchiSteamFarm/Logging.cs @@ -38,7 +38,7 @@ namespace ArchiSteamFarm { private static bool IsUsingCustomConfiguration; private static bool IsWaitingForUserInput; - internal static void EnableDebugLogging() { + internal static void EnableTraceLogging() { if (IsUsingCustomConfiguration || (LogManager.Configuration == null)) { return; } diff --git a/ArchiSteamFarm/Program.cs b/ArchiSteamFarm/Program.cs index bb299efcd..5b94a4779 100644 --- a/ArchiSteamFarm/Program.cs +++ b/ArchiSteamFarm/Program.cs @@ -156,7 +156,7 @@ namespace ArchiSteamFarm { // If debugging is on, we prepare debug directory prior to running if (GlobalConfig.Debug) { - Logging.EnableDebugLogging(); + Logging.EnableTraceLogging(); if (Directory.Exists(SharedInfo.DebugDirectory)) { try {