mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 19:39:03 +08:00
Fix logspam in layerpolygon
This commit is contained in:
parent
b446730d9b
commit
a8f0e330ad
@ -42,7 +42,7 @@ class LayerPolygon:
|
|||||||
|
|
||||||
self._extruder = extruder
|
self._extruder = extruder
|
||||||
self._types = line_types
|
self._types = line_types
|
||||||
unknown_types = numpy.where(self._types >= self.__number_of_types)
|
unknown_types = numpy.where(self._types >= self.__number_of_types, self._types)
|
||||||
if unknown_types:
|
if unknown_types:
|
||||||
# Got faulty line data from the engine.
|
# Got faulty line data from the engine.
|
||||||
for idx in unknown_types:
|
for idx in unknown_types:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user