We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b39d36 commit bc06616Copy full SHA for bc06616
1 file changed
src/sumo/wrapper/_logging.py
@@ -28,6 +28,9 @@ def emit(self, record):
28
if "objectUuid" in record.__dict__:
29
json["objectUuid"] = record.__dict__.get("objectUuid")
30
31
+ if "details" in record.__dict__:
32
+ json["details"] = record.__dict__.get("details")
33
+
34
self._sumoClient.post("/message-log/new", json=json)
35
except Exception:
36
# Never fail on logging
0 commit comments