mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2025-03-09 22:35:07 +08:00
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:
parent
8a40361ca5
commit
16180d4ea9
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue