diff options
author | Ingela Anderton Andin <[email protected]> | 2014-01-13 12:29:08 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-02-05 10:32:28 +0100 |
commit | ad4ff4a083c84c99c054f7948368e7d15f64b701 (patch) | |
tree | 1c98c77807ba9d1aff11811f115c2ed4c19357f6 | |
parent | e848019d1308e4dc20249ef7368ba1bdc01a0d9b (diff) | |
download | otp-ad4ff4a083c84c99c054f7948368e7d15f64b701.tar.gz otp-ad4ff4a083c84c99c054f7948368e7d15f64b701.tar.bz2 otp-ad4ff4a083c84c99c054f7948368e7d15f64b701.zip |
inets: Remove log message as it causes more harm than use at the moment
Conflicts:
lib/inets/src/http_lib/http_request.erl
-rw-r--r-- | lib/inets/src/http_lib/http_request.erl | 5 |
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 b7f2379438..5f787db0ce 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-2009. 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. |