Skip to content

Commit 62a24e2

Browse files
committed
Fix arcolinx score
1 parent e21ace0 commit 62a24e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The following Java logging frameworks are supported:
7070

7171
### Supported log levels by different logging frameworks
7272

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.
7474

7575
| Framework | OFF | FATAL | ERROR | WARN | INFO | DEBUG | TRACE |
7676
|---------------|-------|-------|-------|------|------|-------|-------|
@@ -91,7 +91,7 @@ Different logging frameworks support different log levels. In the JVM diagnostic
9191
| **DEBUG** | Yes | Yes | Yes | Yes | Yes | |
9292
| **TRACE** | Yes | Yes | Yes | Yes | Yes | Yes |
9393

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`.
94+
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`.
9595

9696
## Related content
9797

0 commit comments

Comments
 (0)