timetable-extension #1

Open
fred.boniface wants to merge 154 commits from timetable-extension into main
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 86da330b91 - Show all commits

View File

@ -25,7 +25,7 @@ func CheckCorpus(cfg *helpers.Configuration) {
log.Debug("CORPUS Data", zap.Duration("Data Age", dataAge), zap.Duration("Max Age", 14*24*time.Hour)) log.Debug("CORPUS Data", zap.Duration("Data Age", dataAge), zap.Duration("Max Age", 14*24*time.Hour))
if dataAge >= fortnight { if dataAge >= fortnight {
log.Info("CORPUS Data is more than two weeks old") log.Info("CORPUS update required")
err := RunCorpusUpdate(cfg) err := RunCorpusUpdate(cfg)
if err != nil { if err != nil {
log.Warn("CORPUS Update did not run") log.Warn("CORPUS Update did not run")
@ -33,6 +33,6 @@ func CheckCorpus(cfg *helpers.Configuration) {
log.Info("CORPUS data has been updated") log.Info("CORPUS data has been updated")
} }
} else { } else {
log.Info("CORPUS Data is less than two weeks old, not updating") log.Info("CORPUS Data not stale, skipping updating")
} }
} }

View File

@ -27,6 +27,7 @@ func InitLogger() {
} }
config := zap.NewDevelopmentConfig() config := zap.NewDevelopmentConfig()
config.DisableStacktrace = true
config.EncoderConfig.EncodeLevel = zapcore.CapitalColorLevelEncoder config.EncoderConfig.EncodeLevel = zapcore.CapitalColorLevelEncoder
config.Level = zap.NewAtomicLevelAt(level) config.Level = zap.NewAtomicLevelAt(level)
post, err = config.Build(zap.AddCallerSkip(1)) post, err = config.Build(zap.AddCallerSkip(1))