Commit 7b1d2f50 authored by Florent Guillaume's avatar Florent Guillaume

The SiteErrorLog now copies exceptions to the event log by default

parent f2203126
...@@ -66,6 +66,8 @@ Zope Changes ...@@ -66,6 +66,8 @@ Zope Changes
Other Other
- The SiteErrorLog now copies exceptions to the event log by default.
- ObjectManager now has an hasObject method to test presence. This - ObjectManager now has an hasObject method to test presence. This
brings it in line with BTreeFolder. brings it in line with BTreeFolder.
......
...@@ -71,7 +71,7 @@ class SiteErrorLog (SimpleItem): ...@@ -71,7 +71,7 @@ class SiteErrorLog (SimpleItem):
id = 'error_log' id = 'error_log'
keep_entries = 20 keep_entries = 20
copy_to_zlog = 0 copy_to_zlog = True
security = ClassSecurityInfo() security = ClassSecurityInfo()
......
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