summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2010-08-25 15:36:27 +0100
committerSimon MacMullen <simon@rabbitmq.com>2010-08-25 15:36:27 +0100
commitf2e772f4a442170cece366912fda5ce153328263 (patch)
tree089f3a3be8c80a30d2229b2941277370353779ca /src
parented9e935d414b64db1abc3fbea1c357c593dd68d0 (diff)
parent2d173d737683a797cf3d832ff8744e77d82514c3 (diff)
downloadrabbitmq-server-git-f2e772f4a442170cece366912fda5ce153328263.tar.gz
Merge bug 23131 into default (display plugin version during activation)
Diffstat (limited to 'src')
-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 c9f75be030..0f5ed286b3 100644
--- a/src/rabbit_plugin_activator.erl
+++ b/src/rabbit_plugin_activator.erl
@@ -131,7 +131,9 @@ start() ->
error -> error("failed to compile boot script file ~s", [ScriptFile])
end,
io:format("~n~w plugins activated:~n", [length(PluginApps)]),
- [io:format("* ~w~n", [App]) || App <- PluginApps],
+ [io:format("* ~s-~s~n", [App, Vsn]) ||
+ App <- PluginApps,
+ {App, Vsn} <- [proplists:lookup(App, AppVersions)]],
io:nl(),
halt(),
ok.