Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi All,
I want to log only all WARN and ERROR (not INFO) in the log file. I read this https://our.umbraco.com/documentation/getting-started/Code/Debugging/Logging/ but not much help because of log levels only allows one of Verbose, Debug, Information, Warning, Error, Fatal.
How can I achieve both WARN and ERROR but no INFO?
Hi,
setting an level in the log is like setting the minimum level so it show you that level and all 'above'.
So setting the log to Warning, will log Warning, Error and Fatal entries in the log (but not info, debug, etc)
there is more info here : https://github.com/serilog/serilog/wiki/Configuration-Basics#minimum-level
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Serilog setup for WARN and ERROR
Hi All,
I want to log only all WARN and ERROR (not INFO) in the log file. I read this https://our.umbraco.com/documentation/getting-started/Code/Debugging/Logging/ but not much help because of log levels only allows one of Verbose, Debug, Information, Warning, Error, Fatal.
How can I achieve both WARN and ERROR but no INFO?
Hi,
setting an level in the log is like setting the minimum level so it show you that level and all 'above'.
So setting the log to Warning, will log Warning, Error and Fatal entries in the log (but not info, debug, etc)
there is more info here : https://github.com/serilog/serilog/wiki/Configuration-Basics#minimum-level
is working on a reply...