|
|
|
@ -520,13 +520,14 @@ public final class httpd implements serverHandler {
|
|
|
|
|
if (errorMsg != null) {
|
|
|
|
|
if (errorMsg.startsWith("Socket closed")) {
|
|
|
|
|
this.log.logInfo("httpd shutdown detected ...");
|
|
|
|
|
}
|
|
|
|
|
else if ((errorMsg.startsWith("Broken pipe") || errorMsg.startsWith("Connection reset"))) {
|
|
|
|
|
} else if ((errorMsg.startsWith("Broken pipe") || errorMsg.startsWith("Connection reset"))) {
|
|
|
|
|
// client closed the connection, so we just end silently
|
|
|
|
|
this.log.logInfo("Client unexpectedly closed connection");
|
|
|
|
|
} else {
|
|
|
|
|
this.log.logError("Unexpected Error. " + e.getClass().getName() + ": " + e.getMessage(),e);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.log.logError("Unexpected Error. " + e.getClass().getName() + ": " + e.getMessage(),e);
|
|
|
|
|
this.log.logError("Unexpected Error. " + e.getClass().getName(),e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|