summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGerhard Lazu <gerhard@lazu.co.uk>2016-12-14 12:06:19 +0000
committerGerhard Lazu <gerhard@lazu.co.uk>2016-12-14 18:59:41 +0000
commit97f3f2a370bea2efaa05a140cfb27be788dba27b (patch)
tree5b1e59568e38b5ed100e03303bec7457852120a6 /src
parent4d3d1705e835e2bad9b82ff10bbaee6f8130a2a9 (diff)
downloadrabbitmq-server-git-97f3f2a370bea2efaa05a140cfb27be788dba27b.tar.gz
Be more specific about what is being stopped on `stop_app`
Already implemented in the new CLI, planned to ship as of 3.7.0 rabbitmq/rabbitmq-server#1043
Diffstat (limited to 'src')
-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 8c245892b7..e306afc198 100644
--- a/src/rabbit_control_main.erl
+++ b/src/rabbit_control_main.erl
@@ -277,7 +277,7 @@ action(stop, Node, Args, _Opts, Inform) ->
Res;
action(stop_app, Node, [], _Opts, Inform) ->
- Inform("Stopping node ~p", [Node]),
+ Inform("Stopping rabbit application on node ~p", [Node]),
call(Node, {rabbit, stop, []});
action(start_app, Node, [], _Opts, Inform) ->