From b69738d85221f405642c54f17588c23058c8bcc6 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Wed, 26 Jan 2022 13:35:01 +0200 Subject: [PATCH] - minor changes --- CHANGELOG.md | 1 + tclCommands/TclCommandGeoCutout.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c460a338..b637c36b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ CHANGELOG for FlatCAM beta - modified the bounding box utility feature in the Gerber Object UI to work with buffer value of 0.0 and rounded corners - in Cutout plugin added the ability to create Manual Geometries with negative tool diameters - fix the Transform plugin, buffer functionality for Geometry objects such that the buffer with negative values will work by crating a buffer toward the interior of that geometry +- minor changes 25.01.2022 diff --git a/tclCommands/TclCommandGeoCutout.py b/tclCommands/TclCommandGeoCutout.py index 3a96f8b0..6b9104c7 100644 --- a/tclCommands/TclCommandGeoCutout.py +++ b/tclCommands/TclCommandGeoCutout.py @@ -176,7 +176,7 @@ class TclCommandGeoCutout(TclCommandSignaled): try: cutout_obj = self.app.collection.get_by_name(str(name)) except Exception as e: - log.error("TclCommandGeoCutout --> %s" % str(e)) + self.app.log.error("TclCommandGeoCutout.execute() --> %s" % str(e)) return "Could not retrieve object: %s" % name if 0 in {dia}: