Logging Configuration
The DisplayNet Server logs API activity to its database for diagnostics. Logging is on by default; config sets the minimum severity recorded, down to None to turn it off.
config set app app.LoggingLevel <logging_level>
Each level records itself and everything more severe:
| Level | Records |
|---|---|
Verbose | Everything. An alias for Trace, the name logging search uses |
Debug | Debug and more severe |
Information | Information and more severe |
Warning | Warning, error, and critical |
Error | Error and critical |
Critical | Critical only |
None | Nothing |