chore: update dotnet-bot's idea of what errors are our problem

This commit is contained in:
alyssa 2024-10-18 03:34:10 +09:00
parent 84652d6e3d
commit e88486cb41
2 changed files with 6 additions and 5 deletions

View file

@ -72,7 +72,8 @@ public class ShardConnection: IAsyncDisposable
}
catch (Exception e)
{
_logger.Error(e, "Shard {ShardId}: Error reading from WebSocket");
// these are never useful
// _logger.Error(e, "Shard {ShardId}: Error reading from WebSocket");
// force close so we can "reset"
await CloseInner(WebSocketCloseStatus.NormalClosure, null);
}