Skip to content

Commit 1fae23c

Browse files
committed
Fix LogRuntimeConfig doc rendering
1 parent 9c4c8c4 commit 1fae23c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

core/runtime/src/main/java/io/quarkus/runtime/logging/LogRuntimeConfig.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@ public interface LogRuntimeConfig {
3939
* <p>
4040
* JBoss Logging supports Apache-style log levels:
4141
* <p>
42-
* * {@link org.jboss.logmanager.Level#FATAL}
43-
* * {@link org.jboss.logmanager.Level#ERROR}
44-
* * {@link org.jboss.logmanager.Level#WARN}
45-
* * {@link org.jboss.logmanager.Level#INFO}
46-
* * {@link org.jboss.logmanager.Level#DEBUG}
47-
* * {@link org.jboss.logmanager.Level#TRACE}
42+
* <ul>
43+
* <li>{@link org.jboss.logmanager.Level#FATAL}</li>
44+
* <li>{@link org.jboss.logmanager.Level#ERROR}</li>
45+
* <li>{@link org.jboss.logmanager.Level#WARN}</li>
46+
* <li>{@link org.jboss.logmanager.Level#INFO}</li>
47+
* <li>{@link org.jboss.logmanager.Level#DEBUG}</li>
48+
* <li>{@link org.jboss.logmanager.Level#TRACE}</li>
49+
* </ul>
4850
*
4951
* In addition, it also supports the standard JDK log levels.
50-
*
51-
* @asciidoclet
5252
*/
5353
@WithDefault("INFO")
5454
@WithConverter(LevelConverter.class)

0 commit comments

Comments
 (0)