summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2014-06-10 10:27:04 +0100
committerSimon MacMullen <simon@rabbitmq.com>2014-06-10 10:27:04 +0100
commita92b3a42e45f848499fd3c00ede80e7249a43fca (patch)
treeefbe32d26dad0b95ca3d2590c47b474d5834298a /src
parent85188c32ccb997b59f3b50092ef192fbc6608a1b (diff)
downloadrabbitmq-server-git-a92b3a42e45f848499fd3c00ede80e7249a43fca.tar.gz
Tweak text one more time.
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_plugins_main.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_plugins_main.erl b/src/rabbit_plugins_main.erl
index d655e714ee..981fc6499c 100644
--- a/src/rabbit_plugins_main.erl
+++ b/src/rabbit_plugins_main.erl
@@ -336,8 +336,8 @@ rpc_call(Node, Mod, Fun, Args) ->
{ok, [], Stop} ->
io:format(" stopped ~b plugin~s.~n", [length(Stop), plur(Stop)]);
{ok, Start, Stop} ->
- io:format(" started ~b and stopped ~b plugin~s.~n",
- [length(Start), length(Stop), plur(Start ++ Stop)]);
+ io:format(" stopped ~b plugin~s and started ~b plugin~s.~n",
+ [length(Stop), plur(Stop), length(Start), plur(Start)]);
{badrpc, _} = Error ->
io:format(" failed.~n", []),
Error