Skip to content

Commit

Permalink
Remove logger change
Browse files Browse the repository at this point in the history
  • Loading branch information
julien4215 committed Feb 5, 2025
1 parent af84145 commit 5558225
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/src/network/socket.dart
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ class SocketClient {
_sink
?.close()
.then((_) {
_logger.fine('WebSocket connection to $route was properly closed');
_logger.fine('WebSocket connection to $route was properly closed.');
if (isDisposed) {
return;
}
Expand All @@ -330,8 +330,6 @@ class SocketClient {
}

void _handleEvent(SocketEvent event) {
_logger.fine('WebSocket received ${event.topic} event');

switch (event.topic) {
case '_pong':
_handlePong(pingDelay);
Expand Down

0 comments on commit 5558225

Please sign in to comment.