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 = []