From 829ad312931fe8ada61cbb1b3d56248bb9a13001 Mon Sep 17 00:00:00 2001 From: jblu Date: Tue, 19 Jul 2022 00:05:48 -0500 Subject: [PATCH] changed logging level for api info --- qlist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qlist.py b/qlist.py index 04234a7..e2d5543 100644 --- a/qlist.py +++ b/qlist.py @@ -44,8 +44,8 @@ def listfirsttor(self, index=0): def listqbitapiinfo(self): """Writes torrent info to log file""" - self.tl.info(f'qBittorrent: {self.qbt_client.app.version}') - self.tl.info(f'qBittorrent Web API: {self.qbt_client.app.web_api_version}') + self.tl.debug(f'qBittorrent: {self.qbt_client.app.version}') + self.tl.debug(f'qBittorrent Web API: {self.qbt_client.app.web_api_version}') def torrentcount(self): self.tl.debug(f'torrents that are protected {self.protected_count}')