diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2014-06-10 10:27:04 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2014-06-10 10:27:04 +0100 |
| commit | a92b3a42e45f848499fd3c00ede80e7249a43fca (patch) | |
| tree | efbe32d26dad0b95ca3d2590c47b474d5834298a | |
| parent | 85188c32ccb997b59f3b50092ef192fbc6608a1b (diff) | |
| download | rabbitmq-server-git-a92b3a42e45f848499fd3c00ede80e7249a43fca.tar.gz | |
Tweak text one more time.
| -rw-r--r-- | src/rabbit_plugins_main.erl | 4 |
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 |
