Removed unnecessary print statement.

This commit is contained in:
Michael Woods
2025-02-18 22:48:30 -05:00
parent 37f5986b7e
commit 9878a2df0e

View File

@@ -41,7 +41,7 @@ class PacketServerConnection(Connection):
return self.call_to return self.call_to
def connected(self): def connected(self):
print("connected") logging.debug("connected")
logging.debug(f"new connection from {self.call_from} to {self.call_to}") logging.debug(f"new connection from {self.call_from} to {self.call_to}")
for fn in PacketServerConnection.connection_subscribers: for fn in PacketServerConnection.connection_subscribers:
fn(self) fn(self)