6
1
mirror of https://git.mills.io/saltyim/saltyim.git synced 2024-06-26 00:38:22 +00:00

Properly log the Base RL

This commit is contained in:
James Mills 2022-03-27 01:19:40 +10:00
parent 072799a94d
commit fb2c94dbb8

@ -411,10 +411,10 @@ func NewServer(bind string, options ...Option) (*Server, error) {
// Log interesting configuration options
log.Infof("Debug: %t", server.config.Debug)
log.Infof("Debug: %t", server.config.Debug)
log.Infof("Base URL: %s", server.config.BaseURL)
log.Infof("Svc User; %s", server.config.SvcUser)
log.Infof("Admin User: %s", server.config.AdminUser)
log.Infof("Admin Email: %s", server.config.AdminEmail)
log.Infof("Service Users; %s", server.config.SvcUser)
api.initRoutes()
server.initRoutes()