diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_plugin_activator.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rabbit_plugin_activator.erl b/src/rabbit_plugin_activator.erl index a170fb1da8..c9f75be030 100644 --- a/src/rabbit_plugin_activator.erl +++ b/src/rabbit_plugin_activator.erl @@ -51,6 +51,7 @@ %%---------------------------------------------------------------------------- start() -> + io:format("Activating RabbitMQ plugins ..."), %% Ensure Rabbit is loaded so we can access it's environment application:load(rabbit), @@ -129,8 +130,9 @@ start() -> ok -> ok; error -> error("failed to compile boot script file ~s", [ScriptFile]) end, - io:format("~n~w plugins activated.~n~n", [length(PluginApps)]), + io:format("~n~w plugins activated:~n", [length(PluginApps)]), [io:format("* ~w~n", [App]) || App <- PluginApps], + io:nl(), halt(), ok. |
