summaryrefslogtreecommitdiff
path: root/deps/rabbitmq_web_stomp/src/rabbit_web_stomp_listener.erl
diff options
context:
space:
mode:
Diffstat (limited to 'deps/rabbitmq_web_stomp/src/rabbit_web_stomp_listener.erl')
-rw-r--r--deps/rabbitmq_web_stomp/src/rabbit_web_stomp_listener.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/deps/rabbitmq_web_stomp/src/rabbit_web_stomp_listener.erl b/deps/rabbitmq_web_stomp/src/rabbit_web_stomp_listener.erl
index 68339715a2..0c440463c1 100644
--- a/deps/rabbitmq_web_stomp/src/rabbit_web_stomp_listener.erl
+++ b/deps/rabbitmq_web_stomp/src/rabbit_web_stomp_listener.erl
@@ -114,13 +114,13 @@ start_tcp_listener(TCPConf0, CowboyOpts0, Routes) ->
{error, ErrTCP} ->
rabbit_log_connection:error(
"Failed to start a WebSocket (HTTP) listener. Error: ~p,"
- " listener settings: ~p~n",
+ " listener settings: ~p",
[ErrTCP, TCPConf]),
throw(ErrTCP)
end,
listener_started(?TCP_PROTOCOL, TCPConf),
rabbit_log_connection:info(
- "rabbit_web_stomp: listening for HTTP connections on ~s:~w~n",
+ "rabbit_web_stomp: listening for HTTP connections on ~s:~w",
[get_binding_address(TCPConf), Port]).
@@ -152,13 +152,13 @@ start_tls_listener(TLSConf0, CowboyOpts0, Routes) ->
{error, ErrTLS} ->
rabbit_log_connection:error(
"Failed to start a TLS WebSocket (HTTPS) listener. Error: ~p,"
- " listener settings: ~p~n",
+ " listener settings: ~p",
[ErrTLS, TLSConf]),
throw(ErrTLS)
end,
listener_started(?TLS_PROTOCOL, TLSConf),
rabbit_log_connection:info(
- "rabbit_web_stomp: listening for HTTPS connections on ~s:~w~n",
+ "rabbit_web_stomp: listening for HTTPS connections on ~s:~w",
[get_binding_address(TLSConf), TLSPort]).
listener_started(Protocol, Listener) ->