diff --git a/modules/ticker.go b/modules/ticker.go index 9692a80a..5114806e 100644 --- a/modules/ticker.go +++ b/modules/ticker.go @@ -82,7 +82,7 @@ func (t *Ticker) Start() error { t.SetRunning(true) go func() { - log.Info("Ticker running with period %ds.", t.Period.Seconds()) + log.Info("Ticker running with period %.fs.", t.Period.Seconds()) tick := time.Tick(t.Period) for _ = range tick { if t.Running() == false {