summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2010-08-12 04:10:13 +0100
committerMatthias Radestock <matthias@rabbitmq.com>2010-08-12 04:10:13 +0100
commit5b920f47ffb3af84853e447291d4e231c163fc12 (patch)
treef9282a230fe0da9ae5ea0fb16ed28e419ad93635
parent215589110977e13e95d29024bb4f12e488d4d156 (diff)
downloadrabbitmq-server-git-5b920f47ffb3af84853e447291d4e231c163fc12.tar.gz
cosmetic
-rw-r--r--src/rabbit_plugin_activator.erl4
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.