summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2014-06-18 17:23:53 +0100
committerSimon MacMullen <simon@rabbitmq.com>2014-06-18 17:23:53 +0100
commit1365c57cee0fde3f3414e123f82e64766092e046 (patch)
tree93f465784ba724ff2642584ec2c047afa612c996 /src
parentad47331ebb7b9fde0a8cc4c69ad119ffbfe052d9 (diff)
downloadrabbitmq-server-git-1365c57cee0fde3f3414e123f82e64766092e046.tar.gz
Hopefully clearer.
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_plugins_main.erl10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/rabbit_plugins_main.erl b/src/rabbit_plugins_main.erl
index 7e9c4d60a9..278fcf986d 100644
--- a/src/rabbit_plugins_main.erl
+++ b/src/rabbit_plugins_main.erl
@@ -347,7 +347,7 @@ sync(Node, ForceOnline, PluginsFile) ->
rpc_call(Node, ForceOnline, rabbit_plugins, ensure, [PluginsFile]).
rpc_call(Node, Online, Mod, Fun, Args) ->
- io:format("Applying plugin configuration to ~s...", [Node]),
+ io:format("~nApplying plugin configuration to ~s...", [Node]),
case rpc:call(Node, Mod, Fun, Args) of
{ok, [], []} ->
io:format(" nothing to do.~n", []);
@@ -364,10 +364,10 @@ rpc_call(Node, Online, Mod, Fun, Args) ->
true -> Error;
false -> io:format(
" * Could not contact node ~s.~n"
- " * Changes will take effect at broker restart.~n"
- " * Specify --online for diagnostics and to treat "
- "this as a failure.~n"
- " * Specify --offline to disable changes to running "
+ " Changes will take effect at broker restart.~n"
+ " * Options: --online - fail if broker cannot be "
+ "contacted.~n"
+ " --offline - do not try to contact "
"broker.~n",
[Node])
end;