From 7e6c1c8ccd932ef2d4bc7d370ea63600efa11a01 Mon Sep 17 00:00:00 2001 From: David Trattnig <david.trattnig@o94.at> Date: Tue, 26 May 2020 23:50:18 +0200 Subject: [PATCH] Less verbose output. --- modules/communication/liquidsoap/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/communication/liquidsoap/client.py b/modules/communication/liquidsoap/client.py index 76151f9a..5f8da879 100644 --- a/modules/communication/liquidsoap/client.py +++ b/modules/communication/liquidsoap/client.py @@ -200,7 +200,7 @@ class LiquidSoapClient: try: if not self.disable_logging: - self.logger.info("LiquidSoapClient sending to LiquidSoap Server: " + message[0:len(message)-1]) + self.logger.debug("LiquidSoapClient sending to LiquidSoap Server: " + message[0:len(message)-1]) # send all the stuff over the socket to liquidsoap server self.socket.sendall(message.encode()) @@ -212,7 +212,7 @@ class LiquidSoapClient: self.read() if not self.disable_logging: - self.logger.info("LiquidSoapClient got reply: " + self.message) + self.logger.debug("LiquidSoapClient got reply: " + self.message) except BrokenPipeError as e: self.logger.error(TerminalColors.RED.value+"Detected a problem with liquidsoap connection while sending: " + message + ". Reason: " + str(e) + "! Trying to reconnect."+TerminalColors.RED.value) self.connect() -- GitLab