Remove overzealous log entry

This was in the happy path and gets executed for every material profile in every material file, which is hundreds of times. Better not.

Found during development of CURA-4797.
This commit is contained in:
Ghostkeeper 2018-01-23 15:45:12 +01:00
parent b0d0b75662
commit f88df7e5cd
No known key found for this signature in database
GPG key ID: 5252B696FB5E7C7A

View file

@ -541,7 +541,6 @@ class XmlMaterialProfile(InstanceContainer):
Logger.log("w", "No definition found for machine ID %s", machine_id)
continue
Logger.log("d", "Found definition for machine ID %s", machine_id)
definition = definitions[0]
machine_manufacturer = identifier.get("manufacturer", definition.get("manufacturer", "Unknown")) #If the XML material doesn't specify a manufacturer, use the one in the actual printer definition.