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
+17-18Lines changed: 17 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,27 +72,26 @@ The following Java logging frameworks are supported:
72
72
73
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.
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 will print logs with level `FATAL`, `ERROR`, `WARN`, `INFO`, and will NOT print logs with level `DEBUG` and `TRACE`.
0 commit comments