From de1d97327c5b5f9b836579e497a1781be87621ff Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Tue, 15 Feb 2022 22:48:18 +0200 Subject: [PATCH] - minor debug log message change --- CHANGELOG.md | 1 + camlib.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86637301..38226ad5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ CHANGELOG for FlatCAM beta - minor fixes in the Milling Plugin - if `Start Z` parameter is set in Edit -> Preferences now there is no extra lift GCode because it is replaced by the startz GCode (except for `laser` preprocessors) - if `Start Z` parameter is set in Edit -> Preferences now there is no extra lift GCode because it is replaced by the startz GCode (except for `laser` preprocessors) - for Drilling Plugin too +- minor debug log message change 13.02.2022 diff --git a/camlib.py b/camlib.py index e031a3bf..d7a2c2df 100644 --- a/camlib.py +++ b/camlib.py @@ -3253,7 +3253,7 @@ class CNCjob(Geometry): and the start gcode :rtype: tuple """ - self.app.log.debug("Creating CNC Job from Excellon for tool: %s" % str(tool)) + self.app.log.debug("camlib.CNCJob.excellon_tool_gcode_gen() -> Generating GCode for tool: %s" % str(tool)) # detect if GCode is segmented for autolevelling or not # it does not matter for the Excellon codes because we are not going to autolevel GCode out of Excellon @@ -3637,7 +3637,7 @@ class CNCjob(Geometry): :rtype: str """ - self.app.log.debug("camlib.CNCJob.geometry_tool_gcode_gen()") + self.app.log.debug("camlib.CNCJob.geometry_tool_gcode_gen() -> Generating GCode for tool: %s" % str(tool)) t_gcode = '' temp_solid_geometry = []