Changes

Configuration Files/Logging.config

1,003 bytes added, 10:14, 7 July 2023
== Logging Configuration for Version 3.6 or newer ==
* With Version 3.6 we Replaced our existing Microsoft.Practices.EnterpriseLibrary. Logging with more up-to-date solutions like Serilog.
 
<source lang="xml">
<LoggingConfiguration>
<add key="LogRootPath" value=""/>
<!-- Values can be "Verbose", "Debug", "Information", "Warning", "Error", "Fatal". Normally "Debug" should be fine and you should only change if you know well what you do. -->
<add key="LogLevel" value="Debug"/>
<!-- The most recent 31 files are retained by default (i.e. one long month). If the value is empty the default will be applied. You must specifically set value="null" to remove this limit and all log files will be kept. You can set any other positive number -->
<add key="RetainedFileCountLimit" value="31"/>
<!-- Value can be either "Day", "Month" or "Year". Default is "Day"-->
<add key="RollingInterval" value="Day"/>
</LoggingConfiguration>
</source>
 
== Logging Configuration for Version 3.5 or earlier ==
{{Category/Version|3.5.0}}
[[Category:3.5.0|Configuration Files/Logging.config]]
[[Category:Installing|Configuration Files/Logging.config]]
415
edits