Reduced PathAreaOp log level to info.

This commit is contained in:
Markus Lampert
2017-08-12 19:19:47 -07:00
committed by Yorik van Havre
parent a93bda2805
commit 81f62d60fe

View File

@@ -37,8 +37,11 @@ __title__ = "Base class for PathArea based operations."
__author__ = "sliptonic (Brad Collette)"
__url__ = "http://www.freecadweb.org"
PathLog.setLevel(PathLog.Level.DEBUG, PathLog.thisModule())
PathLog.trackModule()
if False:
PathLog.setLevel(PathLog.Level.DEBUG, PathLog.thisModule())
PathLog.trackModule()
else:
PathLog.setLevel(PathLog.Level.INFO, PathLog.thisModule())
# Qt tanslation handling
def translate(context, text, disambig=None):