Skip to content

Commit

Permalink
more debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Aug 30, 2024
1 parent 978f67f commit ed9fee4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -4500,8 +4500,14 @@ def custom_format_unmet_check(self, torrent: qbittorrentapi.TorrentDictionary) -
None,
)
self.logger.debug("custom_format_unmet_check: [customFormat:%s]", customFormat)
movie = self.model_file.get_or_none(self.model_file.EntryId == entry)
self.logger.debug("custom_format_unmet_check: [movieId:%s]", entry)
movie = (
self.model_file.select().where(self.model_file.EntryId == entry).execute()
)
self.logger.debug(
"custom_format_unmet_check: [movieId:%s][movie:%s]",
entry,
dict(movie) if movie else {},
)
self.logger.debug(
"custom_format_unmet_check: [MovieFileId:%s]", movie.MovieFileId
)
Expand Down

0 comments on commit ed9fee4

Please sign in to comment.