From 03c3219996a6051a2fe0cda3da9cd238f7fe720c Mon Sep 17 00:00:00 2001 From: elpatron68 Date: Sun, 28 Jul 2019 11:51:09 +0200 Subject: [PATCH] Change log level --- mumbleBot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mumbleBot.py b/mumbleBot.py index 3d5d9d6..74de357 100644 --- a/mumbleBot.py +++ b/mumbleBot.py @@ -389,7 +389,7 @@ class MumbleBot: msg += '' # Shorten table if message too long if len(msg) < 5000: - logging.info('Result too long stage I') + logging.debug('Result too long stage I') msg = var.config.get('strings', 'rbqueryresult') + " :" + ' (shortened L1)' msg += '\n' for s in rb_stations: @@ -399,7 +399,7 @@ class MumbleBot: if len(msg) < 5000: self.send_msg(msg, text) else: - logging.info('Result too long stage II') + logging.debug('Result too long stage II') msg = var.config.get('strings', 'rbqueryresult') + " :" + ' (shortened L2)' msg += '!rbplay ID - Station Name' for s in rb_stations:
!rbplay IDStation Name