Modify severity of fails

Those are now client-sided errors, so they're serious (yeah, like everything in Steam...)
This commit is contained in:
JustArchi
2016-09-25 01:26:38 +02:00
parent 2e3f40802f
commit cd9f255a11

View File

@@ -1747,10 +1747,10 @@ namespace ArchiSteamFarm {
if (response.Result == EResult.OK) { if (response.Result == EResult.OK) {
Logging.LogGenericInfo("Success!", BotName); Logging.LogGenericInfo("Success!", BotName);
} else { } else {
Logging.LogGenericInfo("Failed with error: " + response.Result, BotName); Logging.LogGenericWarning("Failed with error: " + response.Result, BotName);
} }
} else { } else {
Logging.LogGenericInfo("Failed!", BotName); Logging.LogGenericWarning("Failed!", BotName);
} }
} }
} }