summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2013-01-22 17:53:06 +0000
committerSimon MacMullen <simon@rabbitmq.com>2013-01-22 17:53:06 +0000
commit19e9691700293806f0255efe0f2fda93ced1d312 (patch)
tree0932d11b1907f606379b780ba7c38e2c902bba76
parentceb5f7fd0f030b5c92e6642f9ff0caeb18cbcc68 (diff)
downloadrabbitmq-server-bug24980.tar.gz
Call me sentimental, but reinstate the idea of an ASCII-art rabbit...bug24980
-rw-r--r--src/rabbit.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl
index 1900f794..641f81c0 100644
--- a/src/rabbit.erl
+++ b/src/rabbit.erl
@@ -696,7 +696,7 @@ log_broker_started(Plugins) ->
fun() ->
error_logger:info_msg(
"Server startup complete; plugins are: ~p~n", [Plugins]),
- io:format("~nBroker running with ~p plugins.~n",
+ io:format("~n Broker running with ~p plugins.~n",
[length(Plugins)])
end).
@@ -711,10 +711,10 @@ erts_version_check() ->
print_banner() ->
{ok, Product} = application:get_key(id),
{ok, Version} = application:get_key(vsn),
- io:format("~n~s ~s. ~s~n~s~n~n",
+ io:format("~n## ## ~s ~s. ~s~n## ## ~s~n########## ~n",
[Product, Version, ?COPYRIGHT_MESSAGE, ?INFORMATION_MESSAGE]),
- io:format("Logs: ~s~n ~s~n", [log_location(kernel),
- log_location(sasl)]).
+ io:format("###### ## Logs: ~s~n########## ~s~n",
+ [log_location(kernel), log_location(sasl)]).
log_banner() ->
{ok, Product} = application:get_key(id),