diff options
Diffstat (limited to 'src/ejabberd_s2s_out.erl')
-rw-r--r-- | src/ejabberd_s2s_out.erl | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/ejabberd_s2s_out.erl b/src/ejabberd_s2s_out.erl index 3c40d805a..db8f3d0a3 100644 --- a/src/ejabberd_s2s_out.erl +++ b/src/ejabberd_s2s_out.erl @@ -138,9 +138,9 @@ host_down(Host) -> process_auth_result(#{server := LServer, remote_server := RServer} = State, {false, Reason}) -> Delay = get_delay(), - ?INFO_MSG("Failed to establish outbound s2s connection ~s -> ~s: " - "authentication failed; bouncing for ~p seconds", - [LServer, RServer, Delay]), + ?WARNING_MSG("Failed to establish outbound s2s connection ~s -> ~s: " + "authentication failed; bouncing for ~p seconds", + [LServer, RServer, Delay]), State1 = State#{on_route => bounce, stop_reason => Reason}, State2 = close(State1), State3 = bounce_queue(State2), @@ -157,9 +157,9 @@ process_closed(#{server := LServer, remote_server := RServer, process_closed(#{server := LServer, remote_server := RServer} = State, Reason) -> Delay = get_delay(), - ?INFO_MSG("Failed to establish outbound s2s connection ~s -> ~s: ~s; " - "bouncing for ~p seconds", - [LServer, RServer, format_error(Reason), Delay]), + ?WARNING_MSG("Failed to establish outbound s2s connection ~s -> ~s: ~s; " + "bouncing for ~p seconds", + [LServer, RServer, format_error(Reason), Delay]), State1 = State#{on_route => bounce}, State2 = bounce_queue(State1), xmpp_stream_out:set_timeout(State2, timer:seconds(Delay)). @@ -223,10 +223,10 @@ handle_auth_failure(Mech, Reason, remote_server := RServer, server_host := ServerHost, server := LServer} = State) -> - ?INFO_MSG("(~s) Failed outbound s2s ~s authentication ~s -> ~s (~s): ~s", - [xmpp_socket:pp(Socket), Mech, LServer, RServer, - ejabberd_config:may_hide_data(misc:ip_to_list(IP)), - xmpp_stream_out:format_error(Reason)]), + ?WARNING_MSG("(~s) Failed outbound s2s ~s authentication ~s -> ~s (~s): ~s", + [xmpp_socket:pp(Socket), Mech, LServer, RServer, + ejabberd_config:may_hide_data(misc:ip_to_list(IP)), + xmpp_stream_out:format_error(Reason)]), ejabberd_hooks:run_fold(s2s_out_auth_result, ServerHost, State, [{false, Reason}]). handle_packet(Pkt, #{server_host := ServerHost} = State) -> |