feat: add debug output for unsupported struct

This commit is contained in:
2023-07-24 16:52:32 +02:00
parent 4cf8f866b6
commit 80874c7127

View File

@@ -127,6 +127,7 @@ def smart_send_to_clients():
try:
message = messagetools.load_struct(struct)
except messagetools.UnsupportedStruct as e:
print(str(e), file=sys.stderr)
return (e.response(), 408)