From c9b053770b27e4eaf86e654fb2447c783bb56371 Mon Sep 17 00:00:00 2001 From: Markus Lampert Date: Sat, 16 Sep 2017 10:53:59 -0700 Subject: [PATCH] Reduced log level. --- src/Mod/Path/PathScripts/PathAreaOp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Path/PathScripts/PathAreaOp.py b/src/Mod/Path/PathScripts/PathAreaOp.py index a360175f17..33cef71e9a 100644 --- a/src/Mod/Path/PathScripts/PathAreaOp.py +++ b/src/Mod/Path/PathScripts/PathAreaOp.py @@ -104,7 +104,7 @@ class ObjectOp(PathOp.ObjectOp): if PathOp.FeatureBaseGeometry & self.opFeatures(obj): if prop == 'Base' and len(obj.Base) == 1: - PathLog.info("opOnChanged(%s, %s)" % (obj.Label, prop)) + PathLog.debug("opOnChanged(%s, %s)" % (obj.Label, prop)) try: (base, sub) = obj.Base[0] bb = base.Shape.BoundBox # parent boundbox @@ -146,7 +146,7 @@ class ObjectOp(PathOp.ObjectOp): The base implementation sets the depths and heights based on the areaOpShapeForDepths() return value. Do not overwrite, overwrite areaOpSetDefaultValues(obj) instead.''' - PathLog.info("opSetDefaultValues(%s)" % (obj.Label)) + PathLog.debug("opSetDefaultValues(%s)" % (obj.Label)) if PathOp.FeatureDepths & self.opFeatures(obj): try: shape = self.areaOpShapeForDepths(obj)