diff options
author | Matthias Radestock <matthias@lshift.net> | 2010-01-27 13:01:29 +0000 |
---|---|---|
committer | Matthias Radestock <matthias@lshift.net> | 2010-01-27 13:01:29 +0000 |
commit | 0669ead9e92275c11b20af54f78343d5ccca2421 (patch) | |
tree | 4307bd4843d0086487a249de2dafe6bf992be09a | |
parent | d57cbe5283dff29a0eccc19f72bde86e2f26c20e (diff) | |
download | rabbitmq-server-0669ead9e92275c11b20af54f78343d5ccca2421.tar.gz |
cosmetic: give startup messages a bit more space
-rw-r--r-- | src/rabbit.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl index 88b8e7a4..76cd82a9 100644 --- a/src/rabbit.erl +++ b/src/rabbit.erl @@ -248,7 +248,7 @@ run_boot_step({StepName, Attributes}) -> [] -> io:format("-- ~s~n", [Description]); MFAs -> - io:format("starting ~-40s ...", [Description]), + io:format("starting ~-60s ...", [Description]), [case catch apply(M,F,A) of {'EXIT', Reason} -> boot_error("FAILED~nReason: ~p~n", [Reason]); |