Added name of output device

CURA-4160
This commit is contained in:
Jaime van Kessel 2017-08-16 10:52:13 +02:00
parent 17a615d30c
commit 33f843b73a

View file

@ -182,6 +182,9 @@ class SliceInfo(Extension):
data["print_settings"] = print_settings
# Send the name of the output device type that is used.
data["output_to"] = type(output_device).__name__
# Convert data to bytes
binary_data = json.dumps(data).encode("utf-8")