Remove errant log statement

This commit is contained in:
Tim Van Baak 2025-03-02 20:57:57 -08:00
parent be638e8e4a
commit 2e01266843

View File

@ -123,8 +123,6 @@ func getSourceBatcher(db DB, source string) (func(createdTime time.Time) (tts in
return nil, fmt.Errorf("failed to parse batch spec: %v", err)
}
log.Printf("%s batch %d %d", source, hour, minute)
return func(createdTime time.Time) (tts int) {
// There is a trivial inaccuracy in using time.Now() instead of item.Created, but
// the latter isn't populated for new items when postprocessing occurs.