Skip to content

Commit

Permalink
Logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Dec 5, 2024
1 parent 22bf52c commit 7972825
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -4700,6 +4700,7 @@ class Meta:
self.search_setup_completed = True

def run_request_search(self):
self.logger.trace("Starting request search function")
if (
(
(not self.ombi_search_requests and not self.overseerr_requests)
Expand All @@ -4708,8 +4709,11 @@ def run_request_search(self):
or self.request_search_timer is None
or (self.request_search_timer > time.time() - self.search_requests_every_x_seconds)
):
self.logger.trace("Skipping request search function")
return None
self.logger.trace("registering search mode")
self.register_search_mode()
self.logger.trace("Search mode registered")
totcommands = -1
if SEARCH_LOOP_DELAY == -1:
loop_delay = 30
Expand Down

0 comments on commit 7972825

Please sign in to comment.