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
commitbf7b180cf6b95d8473554b2c36d21025a7160f3c (patch)
treef9282a230fe0da9ae5ea0fb16ed28e419ad93635
parentefe00b78192cf83a878e37f3f65fade5bad2f3be (diff)
downloadrabbitmq-server-bf7b180cf6b95d8473554b2c36d21025a7160f3c.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 a170fb1d..c9f75be0 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.