diff options
Diffstat (limited to 'internal/schedule/stats.go')
| -rw-r--r-- | internal/schedule/stats.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/internal/schedule/stats.go b/internal/schedule/stats.go index b4f8153..a9d5ba4 100644 --- a/internal/schedule/stats.go +++ b/internal/schedule/stats.go @@ -81,13 +81,12 @@ func (s stats) targetHit(pauseDays, maxQueuedDays int) bool { pauseDays-- } if s.postsPerDay >= s.postsPerDayTarget { - _, _ = colour.Infoln("Posts per day target hit") + colour.Infoln("Posts per day target hit") return true } if s.lastPostDaysAgo <= float64(pauseDays) { - _, _ = colour.Infoln("Need to wait a bit longer as last post isn't", pauseDays, "days ago yet") + colour.Infoln("Need to wait a bit longer as last post isn't", pauseDays, "days ago yet") return true - } return false } |
