Commit 9b54eded authored by Romain Courteaud's avatar Romain Courteaud

erp5_core: decrease LOG priority

parent 8d813ca4
......@@ -28,7 +28,7 @@
import sys
from collections import defaultdict
from zLOG import LOG, INFO
from zLOG import LOG, DEBUG
from Products.ERP5Type.Tool.BaseTool import BaseTool
from AccessControl import ClassSecurityInfo
from Products.ERP5Type.Globals import InitializeClass
......@@ -149,8 +149,8 @@ class RuleTool(BaseTool):
for m in message_list:
kw.update(m.kw)
m.result = None
LOG("RuleTool", INFO, "Updating simulation for %s: %r"
% (expandable.getPath(), kw))
LOG("RuleTool", DEBUG, "Updating simulation for %s: %r"
% (expandable.getPath(), kw))
expandable._updateSimulation(**kw)
except Exception:
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