Skip to content

Commit

Permalink
watcher: Improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanConnell committed Apr 28, 2024
1 parent 50d4185 commit 7ef512c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions internal/watcher/watcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ func (w *Watcher) FindEvents(diffMode, includePartialMatch bool) ([]*ticketmaste
return nil, nil, err
}
seen.Add(previousIDs...)

fmt.Println("The following IDs will be ignored while running in 'diff' mode:")
for _, id := range previousIDs {
fmt.Printf("- %s\n", id)
}
}

// Filter events based on our artist list.
Expand Down

0 comments on commit 7ef512c

Please sign in to comment.