Fixed a print statement

- [Fixed] Made a print statement into a debug log as it clutters up the main information.
This commit is contained in:
Visorask 2021-03-03 18:11:23 -06:00 committed by GitHub
parent 8a40361ca5
commit 16180d4ea9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -157,7 +157,7 @@ def get_torrent_info(t_list):
else: else:
t_count = 1 t_count = 1
torrentattr = {'Category': category, 'save_path': save_path, 'count': t_count} torrentattr = {'Category': category, 'save_path': save_path, 'count': t_count}
print(torrent.name,t_count) logger.debug(torrent.name, t_count)
torrentdict[torrent.name] = torrentattr torrentdict[torrent.name] = torrentattr
return torrentdict return torrentdict