diff --git a/modules/communication/liquidsoap/client.py b/modules/communication/liquidsoap/client.py
index 76151f9a3bd8f0669bef442a40b159eb96e1b9cb..5f8da879b901a3f08d746f027036cafd58aef710 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()