Skip to content

Commit e21ace0

Browse files
committed
Remove deprecated log level ALL
1 parent 3405439 commit e21ace0

File tree

1 file changed

+17
-18
lines changed

1 file changed

+17
-18
lines changed

articles/container-apps/java-dynamic-log-level.md

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -72,27 +72,26 @@ The following Java logging frameworks are supported:
7272

7373
Different logging frameworks support different log levels. In the JVM diagnostics platform, some frameworks are better supported than others. Before changing logging levels, make sure the log levels you're using are supported by both the framework and platform.
7474

75-
| Framework | OFF | FATAL | ERROR | WARN | INFO | DEBUG | TRACE | ALL |
76-
|---------------|-------|-------|-------|------|------|-------|-------|-----|
77-
| Log4j2 | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
78-
| Logback | Yes | No | Yes | Yes | Yes | Yes | Yes | Yes |
79-
| jboss-logging | No | Yes | Yes | Yes | Yes | Yes | Yes | No |
80-
| **Platform** | Yes | No | Yes | Yes | Yes | Yes | Yes | No |
75+
| Framework | OFF | FATAL | ERROR | WARN | INFO | DEBUG | TRACE |
76+
|---------------|-------|-------|-------|------|------|-------|-------|
77+
| Log4j2 | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
78+
| Logback | Yes | No | Yes | Yes | Yes | Yes | Yes |
79+
| jboss-logging | No | Yes | Yes | Yes | Yes | Yes | Yes |
80+
| **Platform** | Yes | No | Yes | Yes | Yes | Yes | Yes |
8181

8282
### General visibility of log levels
8383

84-
| Log Level | FATAL | ERROR | WARN | INFO | DEBUG | TRACE | ALL |
85-
|-----------|-------|-------|------|------|-------|-------|-----|
86-
| **OFF** | | | | | | | |
87-
| **FATAL** | Yes | | | | | | |
88-
| **ERROR** | Yes | Yes | | | | | |
89-
| **WARN** | Yes | Yes | Yes | | | | |
90-
| **INFO** | Yes | Yes | Yes | Yes | | | |
91-
| **DEBUG** | Yes | Yes | Yes | Yes | Yes | | |
92-
| **TRACE** | Yes | Yes | Yes | Yes | Yes | Yes | |
93-
| **ALL** | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
94-
95-
For example, if you set log level to `DEBUG`, your app will print logs with level `FATAL`, `ERROR`, `WARN`, `INFO`, `DEBUG` and will NOT print logs with level `TRACE` AND `ALL`.
84+
| Log Level | FATAL | ERROR | WARN | INFO | DEBUG | TRACE |
85+
|-----------|-------|-------|------|------|-------|-------|
86+
| **OFF** | | | | | | |
87+
| **FATAL** | Yes | | | | | |
88+
| **ERROR** | Yes | Yes | | | | |
89+
| **WARN** | Yes | Yes | Yes | | | |
90+
| **INFO** | Yes | Yes | Yes | Yes | | |
91+
| **DEBUG** | Yes | Yes | Yes | Yes | Yes | |
92+
| **TRACE** | Yes | Yes | Yes | Yes | Yes | Yes |
93+
94+
For example, if you set log level to `INFO`, your app will print logs with level `FATAL`, `ERROR`, `WARN`, `INFO`, and will NOT print logs with level `DEBUG` and `TRACE`.
9695

9796
## Related content
9897

0 commit comments

Comments
 (0)