diff options
| author | Matthias Radestock <matthias@rabbitmq.com> | 2010-08-25 14:55:09 +0100 |
|---|---|---|
| committer | Matthias Radestock <matthias@rabbitmq.com> | 2010-08-25 14:55:09 +0100 |
| commit | 2d173d737683a797cf3d832ff8744e77d82514c3 (patch) | |
| tree | 089f3a3be8c80a30d2229b2941277370353779ca | |
| parent | ed9e935d414b64db1abc3fbea1c357c593dd68d0 (diff) | |
| download | rabbitmq-server-git-2d173d737683a797cf3d832ff8744e77d82514c3.tar.gz | |
display app version during plugin 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. |
