summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2016-02-05 20:28:10 +0300
committerMichael Klishin <michael@clojurewerkz.org>2016-02-05 20:28:10 +0300
commitcc80a0ce8dab2b8e96c2d0ede17213f0dfdecb7f (patch)
tree4371266c635d0a6c91e398c40f64945a0bc8fd9c /src
parent41c6ec56c5829286551906c9ddd23fa0a166f9fd (diff)
downloadrabbitmq-server-git-cc80a0ce8dab2b8e96c2d0ede17213f0dfdecb7f.tar.gz
More copy edits
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_amqqueue_process.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rabbit_amqqueue_process.erl b/src/rabbit_amqqueue_process.erl
index d824a1e22d..513d4df786 100644
--- a/src/rabbit_amqqueue_process.erl
+++ b/src/rabbit_amqqueue_process.erl
@@ -705,7 +705,7 @@ handle_ch_down(DownPid, State = #q{consumers = Consumers,
true ->
log_auto_delete(
io_lib:format(
- "because all ~p of its consumers were on a channel that was closed",
+ "because all of its consumers (~p) were on a channel that was closed",
[length(ChCTags)]),
State),
{stop, State2};
@@ -1074,7 +1074,7 @@ handle_call({basic_cancel, ChPid, ConsumerTag, OkMsg}, _From,
true ->
log_auto_delete(
io_lib:format(
- "because its last consumer ~s was cancelled",
+ "because its last consumer with tag '~s' was cancelled",
[ConsumerTag]),
State),
stop(ok, State1)
@@ -1375,7 +1375,7 @@ log_delete_exclusive(ConPid, #q{ q = #amqqueue{ name = Resource } }) ->
log_auto_delete(Reason, #q{ q = #amqqueue{ name = Resource } }) ->
#resource{ name = QName, virtual_host = VHost } = Resource,
- rabbit_queue:debug("Deleting auto-delete queue '~s' in vhost '~s' " ++
+ rabbit_queue:debug("Deleting auto-delete queue '~s' in vhost '~s' " ++
Reason,
[QName, VHost]).