mirror of
https://github.com/stashapp/stash.git
synced 2025-12-24 09:12:39 +01:00
Tweaked launch console messages
This commit is contained in:
parent
653406efd1
commit
d35f3a9b10
1 changed files with 4 additions and 4 deletions
|
|
@ -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())
|
||||
}()
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue