Commit f30db9f4 authored by Guillaume Seguin's avatar Guillaume Seguin

Lower actors logging messages to debug level

parent edebec73
......@@ -460,8 +460,8 @@ class GcodeModel(Model):
t_end = time.time()
logging.log(logging.INFO, _('Initialized 3D visualization in %.2f seconds') % (t_end - t_start))
logging.log(logging.INFO, _('Vertex count: %d') % ((len(self.vertices) + len(self.travels)) / 3))
logging.debug(_('Initialized 3D visualization in %.2f seconds') % (t_end - t_start))
logging.debug(_('Vertex count: %d') % ((len(self.vertices) + len(self.travels)) / 3))
def copy(self):
copy = GcodeModel()
......
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