Remove an errant log statement

This commit is contained in:
Andrew Ayer 2023-02-07 10:13:52 -05:00
parent 2dc99f8d23
commit 9c61d83ca2
1 changed files with 0 additions and 1 deletions

View File

@ -88,7 +88,6 @@ func (daemon *daemon) startTask(ctx context.Context, ctlog *loglist.Log) task {
func (daemon *daemon) loadLogList(ctx context.Context) error {
newLogList, newToken, err := getLogList(ctx, daemon.config.LogListSource, daemon.logListToken)
if errors.Is(err, loglist.ErrNotModified) {
log.Printf("log list %q not modified", daemon.config.LogListSource)
return nil
} else if err != nil {
return err