Skip to content

Commit

Permalink
Improve socket failure logs
Browse files Browse the repository at this point in the history
  • Loading branch information
veloce committed Apr 10, 2024
1 parent 7c3f42e commit 28c94b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/model/common/socket.dart
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ class SocketClient {
}
_resendAcks();
} catch (error) {
_logger.severe('WebSocket connection failed.', error);
_logger.severe('WebSocket connection failed: $error', error);
_averageLag.value = Duration.zero;
_scheduleReconnect(autoReconnectDelay);
}
Expand Down

0 comments on commit 28c94b7

Please sign in to comment.