diff --git a/modules/ticker.go b/modules/ticker.go index a913608a..dd7e49c7 100644 --- a/modules/ticker.go +++ b/modules/ticker.go @@ -79,7 +79,7 @@ func (t *Ticker) Start() error { } return t.SetRunning(true, func() { - log.Info("Ticker running with period %.fs.", t.Period.Seconds()) + log.Info("ticker running with period %.fs.", t.Period.Seconds()) tick := time.NewTicker(t.Period) for range tick.C { if !t.Running() {