We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be31caa commit cf526afCopy full SHA for cf526af
dwds/lib/src/handlers/dev_handler.dart
@@ -150,16 +150,11 @@ class DevHandler {
150
} on StateError catch (e) {
151
// The sink has already closed (app is disconnected), or another StateError occurred.
152
_logger.warning(
153
- 'Failed to send request to client ${injectedConnection.hashCode}, '
154
- 'connection likely closed. Error: $e',
+ 'Failed to send request to client, connection likely closed. Error: $e',
155
);
156
} catch (e, s) {
157
// Catch any other potential errors during sending.
158
- _logger.severe(
159
- 'Error sending request to client ${injectedConnection.hashCode}: $e',
160
- e,
161
- s,
162
- );
+ _logger.severe('Error sending request to client: $e', e, s);
163
}
164
165
_logger.fine(
0 commit comments