Commit 6f799ab1 authored by Guillaume Seguin's avatar Guillaume Seguin

Apply f30db9f4 to GcodeModelLight (reduce its logging level to debug)

parent 12b401a3
...@@ -690,8 +690,8 @@ class GcodeModelLight(Model): ...@@ -690,8 +690,8 @@ class GcodeModelLight(Model):
t_end = time.time() t_end = time.time()
logging.log(logging.INFO, _('Initialized 3D visualization in %.2f seconds') % (t_end - t_start)) logging.debug(_('Initialized 3D visualization in %.2f seconds') % (t_end - t_start))
logging.log(logging.INFO, _('Vertex count: %d') % (len(self.vertices) / 3)) logging.debug(_('Vertex count: %d') % (len(self.vertices) / 3))
def copy(self): def copy(self):
copy = GcodeModelLight() copy = GcodeModelLight()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment