Debug and Verbose logging level
- Last UpdatedSep 06, 2023
- 1 minute read
Both Verbose and Debug logging level offer a higher level of information for internal developers to analyze a project. These options are not available from inside Studio.
For more information, see Understand message severity levels.
|
TraceLevel |
Description |
Levels Reported |
|---|---|---|
|
Debug |
Should be used only in non-production environments. |
Debug and Info and Warning and Error messages. |
|
Verbose |
Provides extremely detailed diagnostic messages |
Verbose and Debug and Info and Warning and Error messages. |
To change logging level to Debug or Verbose
-
Change the value of the LogLevel key to Debug or Verbose.
<!-- Verbose / Debug / Information / Warning / Error / Fatal -->
<add key="LogLevel" value="Debug" />
<add key="serilog:minimum-level" value="Information" />