Removing no longer needed logging

This commit is contained in:
2024-09-15 01:45:54 -05:00
parent f39d1a39f6
commit bd9a24c007
3 changed files with 2 additions and 4 deletions

View File

@@ -80,9 +80,8 @@ class LSPEndpointServer(Singleton):
data = msg.split("CLIENT|")[1].strip()
if data:
data_str = base64.b64decode(data.encode("utf-8")).decode("utf-8")
logger.debug(data_str)
json_blob = json.loads(data_str)
event_system.emit(json_blob["method"], (json_blob,))
conn.close()
@@ -148,4 +147,4 @@ class LSPEndpointServer(Singleton):
logger.error("LSP Socket no longer valid.... Removing.")
os.unlink(self._ipc_address)
except Exception as e:
logger.error( repr(e) )
logger.error( repr(e) )