summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rabbit_control_main.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_control_main.erl b/src/rabbit_control_main.erl
index b4272555f2..819435ee2b 100644
--- a/src/rabbit_control_main.erl
+++ b/src/rabbit_control_main.erl
@@ -283,7 +283,7 @@ action(forget_cluster_node, Node, [ClusterNodeS], Opts, Inform) ->
action(sync_queue, Node, [Queue], Opts, Inform) ->
VHost = proplists:get_value(?VHOST_OPT, Opts),
- Inform("Synchronising queue ~s in ~s", [Queue, VHost]),
+ Inform("Synchronising queue \"~s\" in vhost \"~s\"", [Queue, VHost]),
rpc_call(Node, rabbit_amqqueue, sync,
[list_to_binary(Queue), list_to_binary(VHost)]);