diff options
| author | Matthias Radestock <matthias@lshift.net> | 2009-10-26 08:52:47 +0000 |
|---|---|---|
| committer | Matthias Radestock <matthias@lshift.net> | 2009-10-26 08:52:47 +0000 |
| commit | 6f2e0baadf31ceb6ad37bef0fab2102acb51675a (patch) | |
| tree | 94a153ad57fad847f99598faec257424a5283c05 /src | |
| parent | b934e39511abfbfed1c463ce5aaaf16dfc3ec86e (diff) | |
| parent | c252ea7de18116cb432d3ee2f14d756822296c82 (diff) | |
| download | rabbitmq-server-git-6f2e0baadf31ceb6ad37bef0fab2102acb51675a.tar.gz | |
merge bug21777 into default
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_plugin_activator.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rabbit_plugin_activator.erl b/src/rabbit_plugin_activator.erl index f28c4a6ec5..e22d844fdf 100644 --- a/src/rabbit_plugin_activator.erl +++ b/src/rabbit_plugin_activator.erl @@ -63,7 +63,7 @@ start() -> %% applications along the way AllApps = case catch sets:to_list(expand_dependencies(RequiredApps)) of {failed_to_load_app, App, Err} -> - error("failed to load application ~s: ~p", [App, Err]); + error("failed to load application ~s:~n~p", [App, Err]); AppList -> AppList end, @@ -98,14 +98,14 @@ start() -> end, ok; {error, Module, Error} -> - error("generation of boot script file ~s failed: ~w", + error("generation of boot script file ~s failed:~n~s", [ScriptFile, Module:format_error(Error)]) end, case post_process_script(ScriptFile) of ok -> ok; {error, Reason} -> - error("post processing of boot script file ~s failed: ~w", + error("post processing of boot script file ~s failed:~n~w", [ScriptFile, Reason]) end, case systools:script2boot(RootName) of |
