Tweaked launch console messages

This commit is contained in:
Stash Dev
2019-12-31 14:42:06 -08:00
parent 653406efd1
commit d35f3a9b10

View File

@@ -216,8 +216,8 @@ func Start() {
go func() {
printVersion()
logger.Infof("stash is listening on" + address)
logger.Infof("stash is running on HTTPS at https://" + displayAddress + "/")
logger.Infof("stash is listening on " + address)
logger.Infof("stash is running at https://" + displayAddress + "/")
logger.Fatal(httpsServer.ListenAndServeTLS("", ""))
}()
} else {
@@ -228,8 +228,8 @@ func Start() {
go func() {
printVersion()
logger.Infof("stash is listening on" + address)
logger.Infof("stash is running on HTTP at http://" + displayAddress + "/")
logger.Infof("stash is listening on " + address)
logger.Infof("stash is running at http://" + displayAddress + "/")
logger.Fatal(server.ListenAndServe())
}()
}