Logging settings

Information on the logging settings section

The majority of logging related configuration has been moved to the Serilog configuration see Serilog settings for more information.

This settings section allows you to configure the max log age for the internal audit log scrubbing. The default maximum age for the internal audit log is 24 hours, however if you want to change this duration, you can with the "MaxLogAge" key, like so:

"Umbraco": {
  "CMS": {
    "Logging": {
      "MaxLogAge": "2.00:00:00"
    }
  }
}

This will increase the maximum age of the entires in the audit log to 48 hours (2 days).

Last updated