summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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