timezone overrides and force_tz option

This commit is contained in:
Gabe Farrell 2026-01-24 17:58:29 +00:00
parent 1ed055d098
commit 3dda01e5d0
3 changed files with 151 additions and 1 deletions

View file

@ -96,6 +96,10 @@ func Run(
defer store.Close(ctx)
l.Info().Msg("Engine: Database connection established")
if cfg.ForceTZ() != nil {
l.Debug().Msgf("Engine: Forcing the use of timezone '%s'", cfg.ForceTZ().String())
}
l.Debug().Msg("Engine: Initializing MusicBrainz client")
var mbzC mbz.MusicBrainzCaller
if !cfg.MusicBrainzDisabled() {