- disabeld a log.debug in ObjectColection.get_by_name()

This commit is contained in:
Marius Stanciu
2019-10-04 17:20:58 +03:00
parent 55fdd59b94
commit cd9f2886c8
2 changed files with 2 additions and 1 deletions

View File

@@ -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():