Remove invalid log level (#1980)

Log level all does not exist. Console output:
Error executing command: No enum constant org.apache.karaf.log.core.Level.ALL
pull/1981/head
Michael Geramb 2022-12-27 21:10:11 +01:00 committed by GitHub
parent 446022f8a4
commit aac15125f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -88,7 +88,6 @@ The **detail** of logging is defined by one of the following levels:
| INFO | 400 | When an event for informational purposes |
| DEBUG | 500 | When a general debugging event required |
| TRACE | 600 | When a fine grained debug message, typically capturing the flow through the application |
| ALL | MAX | When all events should be logged |
The levels build a hierarchy with **ERROR** logging critical messages only and **DEBUG** logging nearly everything.
**DEBUG** combines all logs from weight 100 to 500, while **TRACE** adds further messages in addition to what **DEBUG** displays.