aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2014-01-13 12:29:08 +0100
committerIngela Anderton Andin <[email protected]>2014-01-13 12:29:08 +0100
commit606d4ab84486941af24886b94a05c60dc4a4d05f (patch)
treed0830afe5f38de01e9411aacc11ad6a707e4b27b
parentd9674f32811cd5bb02b0d6656053b5ee226bc74c (diff)
downloadotp-606d4ab84486941af24886b94a05c60dc4a4d05f.tar.gz
otp-606d4ab84486941af24886b94a05c60dc4a4d05f.tar.bz2
otp-606d4ab84486941af24886b94a05c60dc4a4d05f.zip
inets: Remove log message as it causes more harm than use at the moment
-rw-r--r--lib/inets/src/http_lib/http_request.erl5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/inets/src/http_lib/http_request.erl b/lib/inets/src/http_lib/http_request.erl
index aa9f9f6774..f295453bdd 100644
--- a/lib/inets/src/http_lib/http_request.erl
+++ b/lib/inets/src/http_lib/http_request.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2005-2013. All Rights Reserved.
+%% Copyright Ericsson AB 2005-2014. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
@@ -40,9 +40,6 @@ headers([Header | Tail], Headers) ->
headers(Tail, headers(http_util:to_lower(string:strip(Key)),
string:strip(Value), Headers));
{_, []} ->
- Report = io_lib:format("Ignored invalid HTTP-header: ~p~n",
- [Header]),
- error_logger:error_report(Report),
headers(Tail, Headers)
end.