package logging // Logf is the shared printf-style logger signature used across feedkit. // // Keeping this in one place avoids the "scheduler.Logger vs dispatch.Logger" // friction and makes it trivial for downstream apps to pass a single log // function throughout the system. type Logf func(format string, args ...any)