mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Fix logspam in layerpolygon
This commit is contained in:
parent
b446730d9b
commit
a8f0e330ad
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue