From 16180d4ea9abb7b679b0ca17393f09cf00f954b2 Mon Sep 17 00:00:00 2001 From: Visorask <54461452+Visorask@users.noreply.github.com> Date: Wed, 3 Mar 2021 18:11:23 -0600 Subject: [PATCH] Fixed a print statement - [Fixed] Made a print statement into a debug log as it clutters up the main information. --- qbit_manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbit_manage.py b/qbit_manage.py index 76c29ca..8ff3f90 100644 --- a/qbit_manage.py +++ b/qbit_manage.py @@ -157,7 +157,7 @@ def get_torrent_info(t_list): else: t_count = 1 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 return torrentdict