summaryrefslogtreecommitdiff
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
commit6809383c13429daa5f5e5c86503c7e8f49b3189c (patch)
tree93f465784ba724ff2642584ec2c047afa612c996
parent69063a585fffc7ad050c3c2a82c946b0a027425f (diff)
downloadrabbitmq-server-6809383c13429daa5f5e5c86503c7e8f49b3189c.tar.gz
Hopefully clearer.
-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 7e9c4d60..278fcf98 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;