aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/src/http_server/httpd_request_handler.erl
diff options
context:
space:
mode:
authorRicardo Catalinas Jiménez <[email protected]>2011-03-17 01:30:51 +0100
committerRicardo Catalinas Jiménez <[email protected]>2011-03-17 01:55:13 +0100
commitcbe8b2e034a8b2cd6052df5e27f1b229ded9748e (patch)
tree61b054c23b50ebb6ff9d90b3dfc431626931f0a1 /lib/inets/src/http_server/httpd_request_handler.erl
parent91b2e57ea0e3ab794d4b57a12ef10205383525a5 (diff)
downloadotp-cbe8b2e034a8b2cd6052df5e27f1b229ded9748e.tar.gz
otp-cbe8b2e034a8b2cd6052df5e27f1b229ded9748e.tar.bz2
otp-cbe8b2e034a8b2cd6052df5e27f1b229ded9748e.zip
Fix log messages formating in httpd
Diffstat (limited to 'lib/inets/src/http_server/httpd_request_handler.erl')
-rw-r--r--lib/inets/src/http_server/httpd_request_handler.erl4
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 a9db6e2058..31ec416b2d 100644
--- a/lib/inets/src/http_server/httpd_request_handler.erl
+++ b/lib/inets/src/http_server/httpd_request_handler.erl
@@ -240,13 +240,13 @@ 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"
+ 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) ->
httpd_response:send_status(ModData, 408, "Request timeout"),
- error_log("The client did not send the whole request before the"
+ error_log("The client did not send the whole request before the "
"server side timeout", ModData),
{stop, normal, State#state{response_sent = true}};