summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2019-09-25 13:27:32 +0300
committerMichael Klishin <michael@clojurewerkz.org>2019-09-25 13:27:32 +0300
commitb7238282d2cdd7107aac897cfe754e23ddb62fdf (patch)
tree40903acab3168d234541e99a88e12c9c04a95c91 /src
parent682393257e2d65d99edea52bbf98c9891f64e4aa (diff)
downloadrabbitmq-server-git-b7238282d2cdd7107aac897cfe754e23ddb62fdf.tar.gz
More startup banner tweaks suggested by @gerhard
Diffstat (limited to 'src')
-rw-r--r--src/rabbit.erl17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl
index d5dcfe921d..c49c4b7e7a 100644
--- a/src/rabbit.erl
+++ b/src/rabbit.erl
@@ -1186,13 +1186,16 @@ print_banner() ->
%% padded list lines
{LogFmt, LogLocations} = LineListFormatter("~n ~ts", log_locations()),
{CfgFmt, CfgLocations} = LineListFormatter("~n ~ts", config_locations()),
- io:format("~n ## ## ~s ~s. ~s"
- "~n ## ## ~s"
- "~n ##########"
- "~n ###### ## Tutorials: https://rabbitmq.com/getstarted.html"
- "~n ########## Doc guides: https://rabbitmq.com/documentation.html"
- "~n Monitoring: https://rabbitmq.com/monitoring.html"
- "~n Get help: https://rabbitmq.com/contact.html"
+ io:format("~n ## ## ~s ~s"
+ "~n ## ##"
+ "~n ########## ~s"
+ "~n ###### ##"
+ "~n ########## ~s"
+ "~n"
+ "~n Doc guides: https://rabbitmq.com/documentation.html"
+ "~n Support: https://rabbitmq.com/contact.html"
+ "~n Tutorials: https://rabbitmq.com/getstarted.html"
+ "~n Monitoring: https://rabbitmq.com/monitoring.html"
"~n"
"~n Logs: ~ts" ++ LogFmt ++ "~n"
"~n Config file(s): ~ts" ++ CfgFmt ++ "~n"