Skip to content

Commit

Permalink
Added debug logging for configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Jul 15, 2024
1 parent 45eddcc commit 34e793f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,12 +418,18 @@ def __init__(
self.file_extension_allowlist,
)
self.logger.debug("Script Config: AutoDelete=%s", self.auto_delete)

self.logger.debug(
"Script Config: IgnoreTorrentsYoungerThan=%s",
self.ignore_torrents_younger_than,
)
self.logger.debug("Script Config: MaximumETA=%s", self.maximum_eta)
self.logger.debug(
"Script Config: MaximumDeletablePercentage=%s", self.maximum_deletable_percentage
)
self.logger.debug("Script Config: StalledDelay=%s", self.stalled_delay)
self.logger.debug("Script Config: AllowedStalled=%s", self.allowed_stalled)
self.logger.debug("Script Config: ReSearchStalled=%s", self.re_search_stalled)
self.logger.debug("Script Config: StalledDelay=%s", self.stalled_delay)

if self.search_missing:
self.logger.debug(
Expand Down

0 comments on commit 34e793f

Please sign in to comment.