-
Notifications
You must be signed in to change notification settings - Fork 0
LoggerConfig
Yannik Höflich edited this page Aug 22, 2023
·
1 revision
The logging is what gets written into the console, with which the application is run.
Log level:
| Name | Description |
|---|---|
| Trace | everything gets logged. This can lead to critical informations getting logged |
| Debug | This is mainly for developers that need to debug their extensions or develope directly on MatrixWeb. For most other users, this log a lot of unimportant informations |
| Information | This logs all general informations, what the application is doing |
| Warning | This are warnings, the program can still run like before and normaly doesn't have any instabilities |
| Error | Here do the critical things begin, where things doesn't work as they should. Everytging logged here, is something that shouldn't happen |
| Critical | Realy critical things happening, often this is the last thing logged, before the application crashed |
name: logger
| Name | Description | Value type | Example |
|---|---|---|---|
| min-log-level | the minimal log level that gets logged | string | "Information" |