Change a logging line to an error

CURA-5301
This commit is contained in:
Lipu Fei 2018-04-30 10:23:41 +02:00
parent 3e37487632
commit 00dbf2c694

View File

@ -1354,7 +1354,7 @@ class CuraApplication(QtApplication):
try: try:
group_node = Selection.getAllSelectedObjects()[0] group_node = Selection.getAllSelectedObjects()[0]
except Exception as e: except Exception as e:
Logger.log("d", "mergeSelected: Exception: %s", e) Logger.log("e", "mergeSelected: Exception: %s", e)
return return
meshes = [node.getMeshData() for node in group_node.getAllChildren() if node.getMeshData()] meshes = [node.getMeshData() for node in group_node.getAllChildren() if node.getMeshData()]