diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2010-08-25 15:36:27 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2010-08-25 15:36:27 +0100 |
| commit | f2e772f4a442170cece366912fda5ce153328263 (patch) | |
| tree | 089f3a3be8c80a30d2229b2941277370353779ca | |
| parent | ed9e935d414b64db1abc3fbea1c357c593dd68d0 (diff) | |
| parent | 2d173d737683a797cf3d832ff8744e77d82514c3 (diff) | |
| download | rabbitmq-server-git-f2e772f4a442170cece366912fda5ce153328263.tar.gz | |
Merge bug 23131 into default (display plugin version during activation)
| -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 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. |
