fix: downgrade Trakt 403 log from ERR to WARN
All checks were successful
Docker / docker (push) Successful in 1m50s

Trakt returns 403 (not 404) for tmdb IDs it doesn't have in its
database. This is expected behavior, not an application error, so
logging at WARN avoids false alarm noise in production logs.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
dev
2026-03-03 18:18:30 +00:00
parent cdacdb3cbd
commit 93cf3fb8ec
2 changed files with 2 additions and 2 deletions

View File

@@ -78,7 +78,7 @@ func (c *Client) queueProcessor(tail state.ShutdownTail) {
continue continue
} }
c.log.Error(). c.log.Warn().
Err(err). Err(err).
Str("feed_title", feedItem.Title). Str("feed_title", feedItem.Title).
Str(fmt.Sprintf("feed_%s_id", mdp), mdi). Str(fmt.Sprintf("feed_%s_id", mdp), mdi).

View File

@@ -80,7 +80,7 @@ func (c *Client) queueProcessor(tail state.ShutdownTail) {
continue continue
} }
c.log.Error(). c.log.Warn().
Err(err). Err(err).
Str("feed_title", feedItem.Title). Str("feed_title", feedItem.Title).
Str(fmt.Sprintf("feed_%s_id", mdp), mdi). Str(fmt.Sprintf("feed_%s_id", mdp), mdi).