diff --git a/drivers/drivers/pqwsw2.py b/drivers/drivers/pqwsw2.py
index e39a0ee653ba58a21b23dc8c10d121c617c5539f..9d6b7081ffe057a547c77507fe88af8aa07096c0 100644
--- a/drivers/drivers/pqwsw2.py
+++ b/drivers/drivers/pqwsw2.py
@@ -8,10 +8,10 @@ class PQWSW2:
         url = f'http://{self.device_ip}/report'
         try:
             response = requests.get(url)
-            print("Smart Switch Connected Successfully")
+            #print("Smart Switch Connected Successfully")
             self.connected = True
         except:
-            print(f"Device at {device_ip} is not available. Are you connected to the PQWSW2 Wlan?")
+            #print(f"Device at {device_ip} is not available. Are you connected to the PQWSW2 Wlan?")
             self.connected = False
     
     def connect(self, device_ip):
diff --git a/drivers/drivers/rl20001.py b/drivers/drivers/rl20001.py
index d47393d376d2cd3161b734c9bf45b77c29d11d0e..b15cfd587ab5e9af35b8336e64102600142c5783 100644
--- a/drivers/drivers/rl20001.py
+++ b/drivers/drivers/rl20001.py
@@ -6,11 +6,11 @@ class RL20001:
         self.port = port
         try:
             self.ser = serial.Serial(self.port, baudrate=9600, timeout=2)
-            print("Numato USB Relay Connected Successfully")
+            #print("Numato USB Relay Connected Successfully")
             self.connected = True
         except:
             self.ser = None
-            print(f"Failed to open Serial Port {self.port}.")
+            #print(f"Failed to open Serial Port {self.port}.")
             self.connected = False
     
     def connect(self, port):