More logging

This commit is contained in:
barelyprofessional
2026-03-05 09:40:07 -06:00
parent fda98403ae
commit 586a89a4cd

View File

@@ -969,6 +969,7 @@ public class BotServices
bool offlineBet = false;
if (bet.Username == null && !CheckBmjIsLive().Result && !isDotUs)
{
_logger.Info($"Checking for potential offline bet {bet.Id}");
string? betOwner;
try
{
@@ -985,6 +986,7 @@ public class BotServices
_logger.Error($"Failed to get the bet owner for {bet.Id}");
return;
}
_logger.Info($"Got user ID {betOwner}");
if (betOwner != settings[BuiltIn.Keys.ShuffleBmjUserId].Value) return;
offlineBet = true;