diff options
| author | Matthias Radestock <matthias@rabbitmq.com> | 2012-07-16 12:00:33 +0100 |
|---|---|---|
| committer | Matthias Radestock <matthias@rabbitmq.com> | 2012-07-16 12:00:33 +0100 |
| commit | 725f4f59b9fc7b06d69ea5c5455fca7c9c62ce26 (patch) | |
| tree | d75fc418a3bb3ce7f26610b031201aef62ae1605 /src | |
| parent | 36da88eee431c6fe7ab6b9038d23c58d50ce602e (diff) | |
| download | rabbitmq-server-git-725f4f59b9fc7b06d69ea5c5455fca7c9c62ce26.tar.gz | |
make channel/soft errors easier to distinguish from hard errors
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_channel.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_channel.erl b/src/rabbit_channel.erl index cdacc19e27..428f505c85 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}; |
