diff --git a/plextraktsync/trakt/TraktUserList.py b/plextraktsync/trakt/TraktUserList.py index 5439117aeed..2e5441b0996 100644 --- a/plextraktsync/trakt/TraktUserList.py +++ b/plextraktsync/trakt/TraktUserList.py @@ -104,7 +104,11 @@ def add(self, m: Media): # Report duplicates duplicates = [p for _, p in self.plex_items if p.key != m.plex_key and p == m.plex] for p in duplicates: - self.logger.warning(f'Duplicate {p.title_link} ({p.key}) with {m.title_link} {m.plex_key}', extra={"markup": True}) + msg = f'Duplicate {p.title_link} ({p.key}) with {m.title_link} {m.plex_key}' + if p.edition_title is not None: + self.logger.info(msg, extra={"markup": True}) + else: + self.logger.warning(msg, extra={"markup": True}) @property def title_link(self):