server: fix error spam and dangling mixin crashes on plugin uninstall

This commit is contained in:
Koushik Dutta
2022-03-28 20:24:06 -07:00
parent 8d38a8fe1f
commit 95e2e8a42c
3 changed files with 13 additions and 13 deletions

View File

@@ -309,7 +309,7 @@ class RpcPeer:
result['result'] = self.serialize(value, False)
except Exception as e:
tb = traceback.format_exc()
print('failure', method, e, tb)
# print('failure', method, e, tb)
self.createErrorResult(
result, type(e).__name__, str(e), tb)