Skip to content

Commit

Permalink
fix: add log back to orion
Browse files Browse the repository at this point in the history
  • Loading branch information
dreulavelle committed Sep 30, 2024
1 parent 52f466e commit 5a81a0c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/program/scrapers/orionoid.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,4 +153,9 @@ def scrape(self, item: MediaItem) -> Dict[str, str]:
continue
torrents[stream.file.hash] = stream.file.name

if torrents:
logger.log("SCRAPER", f"Found {len(torrents)} streams for {item.log_string}")
else:
logger.log("NOT_FOUND", f"No streams found for {item.log_string}")

return torrents

0 comments on commit 5a81a0c

Please sign in to comment.