Still being curious, looking at where this value seems to be set, i put
<logging cleaningMiliseconds="1000000"></logging>
in umbracoSettings.config but it doesn't like it.
It says Parser Error Message: The value of the property 'cleaningMiliseconds' cannot be parsed. The error is: Object reference not set to an instance of an object.
"Log scrubbed" entry in Umbraco log
Roughly every 4 hours I have an entry in my Umbraco log like this:
INFO umbraco.BusinessLogic.Log - Log scrubbed. Removed all items older than 2017-04-02 10:12:08
What exactly is this doing? What is triggering this or how do i find out?
I read somewhere that it clears the umbracoLog table but this table isn't being touched.
Check out this issue: http://issues.umbraco.org/issue/U4-6320
The LogScrubber class calls CleanLogs which essentially executes this SQL:
delete from umbracoLog where datestamp < @oldestPermittedLogEntry and logHeader in ('open','system')
Thanks, so it's pretty benign really.
Still being curious, looking at where this value seems to be set, i put
in umbracoSettings.config but it doesn't like it.
It says Parser Error Message: The value of the property 'cleaningMiliseconds' cannot be parsed. The error is: Object reference not set to an instance of an object.
is working on a reply...