Change log level from informational to error

This commit is contained in:
Evgeniy Khramtsov 2012-03-19 18:52:20 +10:00
parent 983da9c887
commit 3a51c801e1
1 changed files with 2 additions and 2 deletions

View File

@ -290,8 +290,8 @@ accept(ListenSocket, Module, Opts) ->
CallMod:start(strip_frontend(Module), gen_tcp, Socket, Opts),
accept(ListenSocket, Module, Opts);
{error, Reason} ->
?INFO_MSG("(~w) Failed TCP accept: ~w",
[ListenSocket, Reason]),
?ERROR_MSG("(~w) Failed TCP accept: ~w",
[ListenSocket, Reason]),
accept(ListenSocket, Module, Opts)
end.