Removing no longer needed logging

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

View File

@ -71,7 +71,6 @@ class LogList(Gtk.ListBox):
frame.show_all()
logger.debug(f"{lbl_str}:\n{message}")
del message
del lbl_str

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) )

BIN
src/lsp-manager.zip Normal file

Binary file not shown.