diff options
author | Micael Karlberg <[email protected]> | 2010-11-30 14:00:22 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2010-11-30 14:00:22 +0100 |
commit | 739c7ee15023ba711a0e37aac9bd8753d1c044dd (patch) | |
tree | 7dc0b847bea61b7f3941003f2d9810ad49d97d3c /lib/inets/src/http_client | |
parent | ad82371b4b6e3c0c1bf29f0a03e8e07941ffacc4 (diff) | |
download | otp-739c7ee15023ba711a0e37aac9bd8753d1c044dd.tar.gz otp-739c7ee15023ba711a0e37aac9bd8753d1c044dd.tar.bz2 otp-739c7ee15023ba711a0e37aac9bd8753d1c044dd.zip |
Replaced error report with debug printout.
Also added some verbosity (dbg) printouts in the
transport module (for ip_comm listen).
Diffstat (limited to 'lib/inets/src/http_client')
-rw-r--r-- | lib/inets/src/http_client/httpc_manager.erl | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/inets/src/http_client/httpc_manager.erl b/lib/inets/src/http_client/httpc_manager.erl index 1e1bde220b..591cb78c29 100644 --- a/lib/inets/src/http_client/httpc_manager.erl +++ b/lib/inets/src/http_client/httpc_manager.erl @@ -734,10 +734,11 @@ handle_connect_and_send(_StarterPid, ReqId, HandlerPid, Result, ok; [] -> - error_report(Profile, - "handler (~p) successfully started " - "for unknown request ~p => canceling", - [HandlerPid, ReqId]), + ?hcri("handler successfully started " + "for unknown request => canceling", + [{profile, Profile}, + {handler, HandlerPid}, + {request, ReqId}]), httpc_handler:cancel(ReqId, HandlerPid) end. |