You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/container-apps/java-dynamic-log-level.md
+18-19Lines changed: 18 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,29 +70,28 @@ The following Java logging frameworks are supported:
70
70
71
71
### Supported log levels by different logging frameworks
72
72
73
-
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.
73
+
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 framework and platform support the log levels you're using.
74
74
75
-
| Framework | OFF | FATAL | ERROR | WARN | INFO | DEBUG | TRACE | ALL |
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`.
For example, if you set log level to `INFO`, your app prints logs with level `FATAL`, `ERROR`, `WARN`, `INFO`, and does NOT print logs with level `DEBUG` and `TRACE`.
0 commit comments