Skip to content

Commit

Permalink
fix: revert the default value of force in the _log function to `f…
Browse files Browse the repository at this point in the history
…alse`
  • Loading branch information
gkc committed Nov 15, 2024
1 parent 10cb072 commit 7f50e6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/socket_connector.dart
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ class SocketConnector {
pendingB.clear();
}

void _log(String s, {bool force = true}) {
void _log(String s, {bool force = false}) {
if (verbose || force) {
logger.writeln('${DateTime.now()} | SocketConnector | $s');
}
Expand Down

0 comments on commit 7f50e6f

Please sign in to comment.