Commit df4a2cf6 authored by Romain Courteaud's avatar Romain Courteaud

erp5_core: decrease LOG priority

parent 6cfebfd1
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
import sys import sys
from collections import defaultdict from collections import defaultdict
from zLOG import LOG, INFO from zLOG import LOG, DEBUG
from Products.ERP5Type.Tool.BaseTool import BaseTool from Products.ERP5Type.Tool.BaseTool import BaseTool
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from Products.ERP5Type.Globals import InitializeClass from Products.ERP5Type.Globals import InitializeClass
...@@ -149,8 +149,8 @@ class RuleTool(BaseTool): ...@@ -149,8 +149,8 @@ class RuleTool(BaseTool):
for m in message_list: for m in message_list:
kw.update(m.kw) kw.update(m.kw)
m.result = None m.result = None
LOG("RuleTool", INFO, "Updating simulation for %s: %r" LOG("RuleTool", DEBUG, "Updating simulation for %s: %r"
% (expandable.getPath(), kw)) % (expandable.getPath(), kw))
expandable._updateSimulation(**kw) expandable._updateSimulation(**kw)
except Exception: except Exception:
exc_info = sys.exc_info() exc_info = sys.exc_info()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment