Skip to content

Commit 419999a

Browse files
committed
fix logging where debug should have been debugf
1 parent 26ca6f5 commit 419999a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

connections/lidarr.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func (l *Lidarr) FromConfig(conf *viper.Viper) {
2929
l.Port = conf.GetInt("port")
3030
l.BaseURL = conf.GetString("baseurl")
3131
l.pathMaps = conf.GetStringMapString("mappings")
32-
log.Debug("Lidarr Path Maps: %v", l.pathMaps)
32+
log.Debugf("Lidarr Path Maps: %v", l.pathMaps)
3333
} else {
3434
l.Process = false
3535
}

connections/radarr.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func (r *Radarr) FromConfig(conf *viper.Viper) {
2929
r.Port = conf.GetInt("port")
3030
r.BaseURL = conf.GetString("baseurl")
3131
r.pathMaps = conf.GetStringMapString("mappings")
32-
log.Debug("Radarr Path Maps: %v", r.pathMaps)
32+
log.Debugf("Radarr Path Maps: %v", r.pathMaps)
3333
} else {
3434
r.Process = false
3535
}

connections/sonarr.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func (s *Sonarr) FromConfig(conf *viper.Viper) {
2929
s.Port = conf.GetInt("port")
3030
s.BaseURL = conf.GetString("baseurl")
3131
s.pathMaps = conf.GetStringMapString("mappings")
32-
log.Debug("Sonarr Path Maps: %v", s.pathMaps)
32+
log.Debugf("Sonarr Path Maps: %v", s.pathMaps)
3333
} else {
3434
s.Process = false
3535
}

0 commit comments

Comments
 (0)