diff --git a/ArchiSteamFarm/Bot.cs b/ArchiSteamFarm/Bot.cs index 9a9c60e1a..000c29ed1 100755 --- a/ArchiSteamFarm/Bot.cs +++ b/ArchiSteamFarm/Bot.cs @@ -515,7 +515,7 @@ namespace ArchiSteamFarm { BotDatabase.MobileAuthenticator.Init(this); if (!BotDatabase.MobileAuthenticator.HasCorrectDeviceID) { - Logging.LogGenericInfo("Your DeviceID is incorrect or doesn't exist", BotName); + Logging.LogGenericWarning("Your DeviceID is incorrect or doesn't exist", BotName); string deviceID = Program.GetUserInput(Program.EUserInputType.DeviceID, BotName); if (string.IsNullOrEmpty(deviceID)) { BotDatabase.MobileAuthenticator = null; diff --git a/ArchiSteamFarm/MobileAuthenticator.cs b/ArchiSteamFarm/MobileAuthenticator.cs index 6e13f67f5..442058a82 100644 --- a/ArchiSteamFarm/MobileAuthenticator.cs +++ b/ArchiSteamFarm/MobileAuthenticator.cs @@ -109,7 +109,7 @@ namespace ArchiSteamFarm { } if (!HasCorrectDeviceID) { - Logging.LogGenericWarning("Can't execute properly due to invalid DeviceID!"); + Logging.LogGenericWarning("Can't execute properly due to invalid DeviceID!", Bot.BotName); return false; } @@ -135,7 +135,7 @@ namespace ArchiSteamFarm { } if (!HasCorrectDeviceID) { - Logging.LogGenericWarning("Can't execute properly due to invalid DeviceID!"); + Logging.LogGenericWarning("Can't execute properly due to invalid DeviceID!", Bot.BotName); return null; } @@ -171,7 +171,7 @@ namespace ArchiSteamFarm { internal async Task> GetConfirmations() { if (!HasCorrectDeviceID) { - Logging.LogGenericWarning("Can't execute properly due to invalid DeviceID!"); + Logging.LogGenericWarning("Can't execute properly due to invalid DeviceID!", Bot.BotName); return null; }