From 7ef512cfafd473a7a2a010deeab3bf9951ab32cb Mon Sep 17 00:00:00 2001 From: Ryan Connell <7585908+RyanConnell@users.noreply.github.com> Date: Sun, 28 Apr 2024 12:54:48 +0100 Subject: [PATCH] watcher: Improve logging --- internal/watcher/watcher.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/internal/watcher/watcher.go b/internal/watcher/watcher.go index ded07ea..aec1eb0 100644 --- a/internal/watcher/watcher.go +++ b/internal/watcher/watcher.go @@ -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.