From aac15125f5d403fcf16fedc7315bca4011cab312 Mon Sep 17 00:00:00 2001 From: Michael Geramb Date: Tue, 27 Dec 2022 21:10:11 +0100 Subject: [PATCH] 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 --- administration/logging.md | 1 - 1 file changed, 1 deletion(-) diff --git a/administration/logging.md b/administration/logging.md index f19ef7b5d..60ce11150 100644 --- a/administration/logging.md +++ b/administration/logging.md @@ -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.