diff options
author | Micael Karlberg <[email protected]> | 2011-03-28 14:07:44 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-03-28 14:07:44 +0200 |
commit | a0ab2e0fa31a2599d0532ef87c944837e96153c0 (patch) | |
tree | d2198017cf89cf3110d32e6934dee3d90dd09973 /lib/inets/src | |
parent | 117d7f67b394928755e607afe97e21dca3c060a7 (diff) | |
download | otp-a0ab2e0fa31a2599d0532ef87c944837e96153c0.tar.gz otp-a0ab2e0fa31a2599d0532ef87c944837e96153c0.tar.bz2 otp-a0ab2e0fa31a2599d0532ef87c944837e96153c0.zip |
A slightly more usefull debug printout (including httpd services).
Diffstat (limited to 'lib/inets/src')
-rw-r--r-- | lib/inets/src/http_server/httpd_sup.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inets/src/http_server/httpd_sup.erl b/lib/inets/src/http_server/httpd_sup.erl index f94e5459c1..b248c9bcf0 100644 --- a/lib/inets/src/http_server/httpd_sup.erl +++ b/lib/inets/src/http_server/httpd_sup.erl @@ -90,7 +90,7 @@ id(Address, Port) -> %%% Supervisor callback %%%========================================================================= init([HttpdServices]) -> - ?hdrd("starting", []), + ?hdrd("starting", [{httpd_service, HttpdServices}]), RestartStrategy = one_for_one, MaxR = 10, MaxT = 3600, |