diff options
author | Micael Karlberg <[email protected]> | 2011-09-19 14:40:04 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-09-19 14:40:04 +0200 |
commit | 13fcdd5c954ddbb8ac9401d73f8e77423fbd976c (patch) | |
tree | 70210749d753f5295e10d976226e591a9c6dae51 /lib/inets | |
parent | 6eff98016afc83952e9b677a1e9043d82c900599 (diff) | |
download | otp-13fcdd5c954ddbb8ac9401d73f8e77423fbd976c.tar.gz otp-13fcdd5c954ddbb8ac9401d73f8e77423fbd976c.tar.bz2 otp-13fcdd5c954ddbb8ac9401d73f8e77423fbd976c.zip |
Use (error_logger) info_msg/2 instead of info_report/2,
as suggested in branch at/error_logger_calls.
Diffstat (limited to 'lib/inets')
-rw-r--r-- | lib/inets/test/httpd_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/test/httpd_SUITE.erl b/lib/inets/test/httpd_SUITE.erl index c4d4bf969b..1112208295 100644 --- a/lib/inets/test/httpd_SUITE.erl +++ b/lib/inets/test/httpd_SUITE.erl @@ -646,7 +646,7 @@ init_per_testcase3(Case, Config) -> ok -> "mod_htaccess"; Other -> - error_logger:info_report("Other: ~p~n", [Other]), + error_logger:info_msg("Other: ~p~n", [Other]), {skip, "SSL does not seem to be supported"} end; [X, $s, $s, $l, $_ | Rest] -> @@ -663,7 +663,7 @@ init_per_testcase3(Case, Config) -> ok -> Rest; Other -> - error_logger:info_report("Other: ~p~n", [Other]), + error_logger:info_msg("Other: ~p~n", [Other]), {skip, "SSL does not seem to be supported"} end; "ipv6_" ++ _ = TestCaseStr -> |