Skip to content

Commit

Permalink
🔇 Remove verbose logging from the Python plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
leolabs committed Sep 18, 2021
1 parent 5216901 commit e24bdad
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions midi-script/Socket.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
import socket
import sys
import errno
import traceback
import json
import struct
import zlib
import base64
from threading import Timer


Expand Down Expand Up @@ -73,8 +69,6 @@ def jsonReplace(o):
try:
self._sendto(json.dumps(
{"event": name, "data": obj, "uuid": uuid}, default=jsonReplace, ensure_ascii=False))
self.log_message("Socket Event " + name +
"(" + str(uuid) + "): " + json.dumps(obj, default=jsonReplace))
except Exception as e:
error = str(type(e).__name__) + ': ' + str(e.args)
self._sendto(json.dumps(
Expand Down

0 comments on commit e24bdad

Please sign in to comment.