summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rabbit_reader.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_reader.erl b/src/rabbit_reader.erl
index 31be244b7a..864d77957e 100644
--- a/src/rabbit_reader.erl
+++ b/src/rabbit_reader.erl
@@ -388,7 +388,7 @@ handle_dependent_exit(ChPid, Reason, State) ->
{_Channel, controlled} ->
maybe_close(State);
{Channel, uncontrolled} ->
- log(error, "connection ~p, channel ~p - error:~n~p~n",
+ log(error, "AMQP connection ~p, channel ~p - error:~n~p~n",
[self(), Channel, Reason]),
maybe_close(handle_exception(State, Channel, Reason))
end.
@@ -432,7 +432,7 @@ wait_for_channel_termination(N, TimerRef) ->
wait_for_channel_termination(N-1, TimerRef);
{Channel, uncontrolled} ->
log(error,
- "connection ~p, channel ~p - "
+ "AMQP connection ~p, channel ~p - "
"error while terminating:~n~p~n",
[self(), Channel, Reason]),
wait_for_channel_termination(N-1, TimerRef)