diff options
author | Micael Karlberg <[email protected]> | 2013-09-16 11:47:06 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-02-05 10:32:25 +0100 |
commit | a3ebf39cb29110be5d216ff0fc36a608b2ef27c0 (patch) | |
tree | e70f52a76ab2d2e84f5336b928177a11b882e9f1 | |
parent | b8c86e76187aad7888325c57e021ae498816f5e0 (diff) | |
download | otp-a3ebf39cb29110be5d216ff0fc36a608b2ef27c0.tar.gz otp-a3ebf39cb29110be5d216ff0fc36a608b2ef27c0.tar.bz2 otp-a3ebf39cb29110be5d216ff0fc36a608b2ef27c0.zip |
[inets/httpd] Logging cleanup
Remove logging when fo keep-alive connection timeout. This is
a normal event (feature) not an error.
-rw-r--r-- | lib/inets/src/http_server/httpd_request_handler.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/src/http_server/httpd_request_handler.erl b/lib/inets/src/http_server/httpd_request_handler.erl index cb20159794..57beb1e403 100644 --- a/lib/inets/src/http_server/httpd_request_handler.erl +++ b/lib/inets/src/http_server/httpd_request_handler.erl @@ -268,8 +268,8 @@ handle_info({ssl_error, _, _} = Reason, State) -> %% Timeouts handle_info(timeout, #state{mod = ModData, mfa = {_, parse, _}} = State) -> - error_log("No request received on keep-alive connection " - "before server side timeout", ModData), + %% error_log("No request received on keep-alive connection " + %% "before server side timeout", ModData), %% No response should be sent! {stop, normal, State#state{response_sent = true}}; handle_info(timeout, #state{mod = ModData} = State) -> |