mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Better logging for agents configuration
This commit is contained in:
parent
913a4cf546
commit
20cdd38fc4
3 changed files with 22 additions and 10 deletions
|
@ -158,6 +158,7 @@ func disableExternalServices() {
|
|||
Server.LastFM.Enabled = false
|
||||
Server.Spotify.ID = ""
|
||||
Server.ListenBrainz.Enabled = false
|
||||
Server.Agents = ""
|
||||
if Server.UILoginBackgroundURL == consts.DefaultUILoginBackgroundURL {
|
||||
Server.UILoginBackgroundURL = consts.DefaultUILoginBackgroundURLOffline
|
||||
}
|
||||
|
|
|
@ -18,7 +18,10 @@ type Agents struct {
|
|||
}
|
||||
|
||||
func New(ds model.DataStore) *Agents {
|
||||
order := strings.Split(conf.Server.Agents, ",")
|
||||
var order []string
|
||||
if conf.Server.Agents != "" {
|
||||
order = strings.Split(conf.Server.Agents, ",")
|
||||
}
|
||||
order = append(order, PlaceholderAgentName)
|
||||
var res []Interface
|
||||
for _, name := range order {
|
||||
|
|
|
@ -90,15 +90,23 @@ func checkFfmpegInstallation() {
|
|||
}
|
||||
|
||||
func checkExternalCredentials() {
|
||||
if !conf.Server.LastFM.Enabled {
|
||||
log.Info("Last.FM integration is DISABLED")
|
||||
} else {
|
||||
log.Debug("Last.FM integration is ENABLED")
|
||||
}
|
||||
if conf.Server.EnableExternalServices {
|
||||
if !conf.Server.LastFM.Enabled {
|
||||
log.Info("Last.FM integration is DISABLED")
|
||||
} else {
|
||||
log.Debug("Last.FM integration is ENABLED")
|
||||
}
|
||||
|
||||
if conf.Server.Spotify.ID == "" || conf.Server.Spotify.Secret == "" {
|
||||
log.Info("Spotify integration is not enabled: missing ID/Secret")
|
||||
} else {
|
||||
log.Debug("Spotify integration is ENABLED")
|
||||
if !conf.Server.ListenBrainz.Enabled {
|
||||
log.Info("ListenBrainz integration is DISABLED")
|
||||
} else {
|
||||
log.Debug("ListenBrainz integration is ENABLED")
|
||||
}
|
||||
|
||||
if conf.Server.Spotify.ID == "" || conf.Server.Spotify.Secret == "" {
|
||||
log.Info("Spotify integration is not enabled: missing ID/Secret")
|
||||
} else {
|
||||
log.Debug("Spotify integration is ENABLED")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue