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 1b7fd47 commit 24063e7Copy full SHA for 24063e7
lib/Wrench/ConnectionManager.php
@@ -243,10 +243,12 @@ protected function processClientSocket($socket)
243
244
try {
245
$connection->process();
246
+ } catch (CloseException $e) {
247
+ $this->log('Client connection closed: ' . $e, 'notice');
248
+ $connection->close($e);
249
} catch (WrenchException $e) {
- $this->log('Error on client socket: ' . $e, 'err');
250
+ $this->log('Error on client socket: ' . $e, 'warning');
251
$connection->close($e);
- //$this->removeConnection($connection); // extra?
252
}
253
254
0 commit comments