Improve CandleStore grain deactivating

This commit is contained in:
2025-10-10 22:09:30 +07:00
parent 82f8057ed1
commit bdb254809e
4 changed files with 58 additions and 11 deletions

View File

@@ -1802,7 +1802,8 @@ public class TradingBotBase : ITradingBot
}
catch (Exception ex)
{
await LogWarning($"Failed to update position status for signal {signalIdentifier}: {ex.Message}");
await LogWarning($"Failed to update position status for signal {signalIdentifier}: {ex.Message} {ex.StackTrace}");
SentrySdk.CaptureException(ex);
}
}
@@ -1911,7 +1912,6 @@ public class TradingBotBase : ITradingBot
return;
message = $"[{Config.Name}] {message}";
SentrySdk.CaptureException(new Exception(message));
try
{