summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2012-07-16 12:00:33 +0100
committerMatthias Radestock <matthias@rabbitmq.com>2012-07-16 12:00:33 +0100
commit65c605d2fb4c1856ff6c4b1223bc8f8226450411 (patch)
treed75fc418a3bb3ce7f26610b031201aef62ae1605
parent3e610ca047c7fe745b0b4f15f27fb0e4e185274e (diff)
downloadrabbitmq-server-65c605d2fb4c1856ff6c4b1223bc8f8226450411.tar.gz
make channel/soft errors easier to distinguish from hard errors
-rw-r--r--src/rabbit_channel.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_channel.erl b/src/rabbit_channel.erl
index cdacc19e..428f505c 100644
--- a/src/rabbit_channel.erl
+++ b/src/rabbit_channel.erl
@@ -409,7 +409,7 @@ handle_exception(Reason, State = #ch{protocol = Protocol,
{_Result, State1} = notify_queues(State),
case rabbit_binary_generator:map_exception(Channel, Reason, Protocol) of
{Channel, CloseMethod} ->
- rabbit_log:error("connection ~p, channel ~p - error:~n~p~n",
+ rabbit_log:error("connection ~p, channel ~p - soft error:~n~p~n",
[ConnPid, Channel, Reason]),
ok = rabbit_writer:send_command(WriterPid, CloseMethod),
{noreply, State1};