mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 12:24:38 +03:00
Tweaked launch console messages
This commit is contained in:
@@ -216,8 +216,8 @@ func Start() {
|
|||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
printVersion()
|
printVersion()
|
||||||
logger.Infof("stash is listening on" + address)
|
logger.Infof("stash is listening on " + address)
|
||||||
logger.Infof("stash is running on HTTPS at https://" + displayAddress + "/")
|
logger.Infof("stash is running at https://" + displayAddress + "/")
|
||||||
logger.Fatal(httpsServer.ListenAndServeTLS("", ""))
|
logger.Fatal(httpsServer.ListenAndServeTLS("", ""))
|
||||||
}()
|
}()
|
||||||
} else {
|
} else {
|
||||||
@@ -228,8 +228,8 @@ func Start() {
|
|||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
printVersion()
|
printVersion()
|
||||||
logger.Infof("stash is listening on" + address)
|
logger.Infof("stash is listening on " + address)
|
||||||
logger.Infof("stash is running on HTTP at http://" + displayAddress + "/")
|
logger.Infof("stash is running at http://" + displayAddress + "/")
|
||||||
logger.Fatal(server.ListenAndServe())
|
logger.Fatal(server.ListenAndServe())
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user