Skip to content

Commit

Permalink
Merge pull request #66 from fazelukario/patch-1
Browse files Browse the repository at this point in the history
Fix logging bug
  • Loading branch information
Citrinate authored Nov 16, 2024
2 parents be03ab4 + acd4947 commit 45053b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FreePackages/FreePackages.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public async Task OnBotInitModules(Bot bot, IReadOnlyDictionary<string, JsonElem

case "PauseFreePackagesWhilePlaying" when (configProperty.Value.ValueKind == JsonValueKind.True || configProperty.Value.ValueKind == JsonValueKind.False): {
pauseWhilePlaying = configProperty.Value.GetBoolean();
bot.ArchiLogger.LogGenericInfo("Pause Free Packages While Playing : " + isEnabled.ToString());
bot.ArchiLogger.LogGenericInfo("Pause Free Packages While Playing : " + pauseWhilePlaying.ToString());
break;
}

Expand Down

0 comments on commit 45053b6

Please sign in to comment.