From cd9f2886c89a7e1f7733182df8a8f732e36fa269 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Fri, 4 Oct 2019 17:20:58 +0300 Subject: [PATCH] - disabeld a log.debug in ObjectColection.get_by_name() --- ObjectCollection.py | 2 +- README.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ObjectCollection.py b/ObjectCollection.py index 22913264..9d55231f 100644 --- a/ObjectCollection.py +++ b/ObjectCollection.py @@ -561,7 +561,7 @@ class ObjectCollection(QtCore.QAbstractItemModel): :return: The requested object or None if no such object. :rtype: FlatCAMObj or None """ - FlatCAMApp.App.log.debug(str(inspect.stack()[1][3]) + "--> OC.get_by_name()") + # FlatCAMApp.App.log.debug(str(inspect.stack()[1][3]) + "--> OC.get_by_name()") if isCaseSensitive is None or isCaseSensitive is True: for obj in self.get_list(): diff --git a/README.md b/README.md index 4a51fab1..5e0a28f0 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ CAD program, and create G-Code for Isolation routing. - some code annotations to make it easier to navigate in the FlatCAMGUI.py - fixed exit FullScreen with Escape key - added a new menu category in the MenuBar named 'Objects'. It will hold the objects found in the Project tab. Useful when working in FullScreen +- disabeld a log.debug in ObjectColection.get_by_name() 3.10.2019