Skip to content

Commit

Permalink
fix: fixed log for downloaded message
Browse files Browse the repository at this point in the history
  • Loading branch information
dreulavelle committed Nov 6, 2024
1 parent d2cb0d9 commit 656506f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/program/services/downloaders/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def download_cached_stream(self, item: MediaItem, stream: Stream) -> bool:
self.select_files(torrent_id, the_container.keys())
if not self.update_item_attributes(item, info, the_container):
raise Exception("No matching files found!")
logger.info(f"Downloaded {item.log_string} from '{stream.raw_title}' [{stream.infohash}]")
logger.log("DEBRID", f"Downloaded {item.log_string} from '{stream.raw_title}' [{stream.infohash}]")
return torrent_id

def get_instant_availability(self, infohashes: list[str]) -> dict[str, list[dict]]:
Expand Down

0 comments on commit 656506f

Please sign in to comment.