feat: improve logging of next import time
Alan Pearce alan@alanpearce.eu
Thu, 27 Mar 2025 19:42:24 +0100
1 files changed, 1 insertions(+), 1 deletions(-)
jump to
M internal/importer/main.go → internal/importer/main.go
@@ -309,7 +309,6 @@ nextRun = nextUTCOccurrenceOfTime(imp.config.Importer.UpdateAt) } SetNextRun(nextRun) for { - imp.log.Debug("scheduling next run", "next-run", nextRun) select { case <-parentCtx.Done(): imp.log.Debug("stopping scheduler") @@ -349,6 +348,7 @@ }, monitorConfig) } nextRun = nextUTCOccurrenceOfTime(imp.config.Importer.UpdateAt) MarkIndexingFinished(nextRun) + imp.log.Info("scheduling next run", "next-run", nextRun.Format(time.DateTime)) } }) }