Difference between revisions of "Serilog"
(→Description) |
|||
Line 34: | Line 34: | ||
|} | |} | ||
− | |||
− | |||
− | |||
− | |||
− | |||
===Logging methods used in UBIKKernel=== | ===Logging methods used in UBIKKernel=== | ||
{| class="wikitable sortable" | width = "50%" | {| class="wikitable sortable" | width = "50%" | ||
Line 69: | Line 64: | ||
|- align="left" | |- align="left" | ||
|} | |} | ||
+ | |||
+ | === How To Configure Logging === | ||
*Added a way for the User to configure the default log path, the file count limit, the log event level and rolling policies through Logger.config with changing only the “values”, which are set on their default. | *Added a way for the User to configure the default log path, the file count limit, the log event level and rolling policies through Logger.config with changing only the “values”, which are set on their default. | ||
Line 78: | Line 75: | ||
*The default Rolling policies is set to Day and its values can be changed to "Day", "Month" or "Year". | *The default Rolling policies is set to Day and its values can be changed to "Day", "Month" or "Year". | ||
+ | |||
+ | === Since Version 3.6 === | ||
+ | Replace our existing Microsoft.Practices.EnterpriseLibrary.Logging with more up-to-date solution like Serilog. | ||
+ | |||
+ | [[Category:3.6.0|Serilog]] | ||
=Example= | =Example= |
Revision as of 08:28, 16 November 2020
Serilog is a portable and structured logging framework to record diagnostic logs into files, console and SQL/NoSQL databases.
See also