mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Allow LogLevel to be configurable. Also add filename and line number when LogLevel>=debug
This commit is contained in:
parent
c995766c45
commit
3d76144f82
4 changed files with 50 additions and 25 deletions
|
@ -7,6 +7,7 @@ import (
|
|||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/cloudsonic/sonic-server/conf"
|
||||
"github.com/cloudsonic/sonic-server/log"
|
||||
"github.com/cloudsonic/sonic-server/scanner"
|
||||
"github.com/go-chi/chi"
|
||||
|
@ -38,7 +39,7 @@ func (a *Server) MountRouter(path string, subRouter http.Handler) {
|
|||
}
|
||||
|
||||
func (a *Server) Run(addr string) {
|
||||
log.Info("Starting CloudSonic server", "address", addr)
|
||||
log.Info("CloudSonic server is ready to handle requests", "address", addr)
|
||||
log.Error(http.ListenAndServe(addr, a.router))
|
||||
}
|
||||
|
||||
|
@ -68,9 +69,14 @@ func (a *Server) initImporter() {
|
|||
}
|
||||
|
||||
func (a *Server) startPeriodicScans() {
|
||||
first := true
|
||||
for {
|
||||
select {
|
||||
case <-time.After(5 * time.Second):
|
||||
if first {
|
||||
log.Info("Started iTunes scanner", "xml", conf.Sonic.MusicFolder)
|
||||
first = false
|
||||
}
|
||||
a.Importer.CheckForUpdates(false)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue