We are currently running umbraco v4.11.10 and after reviewing the umbracolog table in the umbraco database I can see system entries 'log scrubbed. Removed all items older than 2014-07-05'
CAn someone please let me know wheere this is configured? Also can the frequency and events to be deleted be ameneded? Some of data in this table might be needed by our security team and I am keen not to delete as frequently.
The settings are hidden away in the /config/umbracoSettings.config file. Under the <logging> section, check if you have a property called <autoCleanLogs>.
If <autoCleanLogs> is set to false, then the logs will not be scrubbed (automatically). If it's set to true, then there are a couple of other options that go with it: <cleaningMiliseconds> and <maxLogAge>
log scrubbed entries
We are currently running umbraco v4.11.10 and after reviewing the umbracolog table in the umbraco database I can see system entries 'log scrubbed. Removed all items older than 2014-07-05'
CAn someone please let me know wheere this is configured? Also can the frequency and events to be deleted be ameneded? Some of data in this table might be needed by our security team and I am keen not to delete as frequently.
Thanks in advance
Sam
Hi Sam,
The settings are hidden away in the
/config/umbracoSettings.config
file. Under the<logging>
section, check if you have a property called<autoCleanLogs>
.If
<autoCleanLogs>
is set to false, then the logs will not be scrubbed (automatically). If it's set to true, then there are a couple of other options that go with it:<cleaningMiliseconds>
and<maxLogAge>
If those properties are not defined in your
<logging>
section, then they'll default to 24 hours (86400 seconds).Hope this helps?
Cheers,
- Lee
is working on a reply...