We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f36681e commit ad63432Copy full SHA for ad63432
ArchiSteamFarm/CardsFarmer.cs
@@ -384,11 +384,11 @@ private void CheckGamesForFarming() {
384
385
string progress = htmlNode.InnerText;
386
if (string.IsNullOrEmpty(progress)) {
387
- Logging.LogNullError(nameof(progress));
+ Logging.LogNullError(nameof(progress), Bot.BotName);
388
return null;
389
}
390
391
- Logging.LogGenericInfo("Status for " + appID + ": " + progress);
+ Logging.LogGenericInfo("Status for " + appID + ": " + progress, Bot.BotName);
392
return progress.Equals("No card drops remaining");
393
394
0 commit comments