DEV Community

özkan pakdil
özkan pakdil

Posted on

enable vertx debug log

I was working with vertx4 to 5 upgrade in this project and I needed to enable debug log, I tried logback but it did not work so I went with java util logging

create file src/main/resources/vertx-default-jul-logging.properties and put the code below

handlers=java.util.logging.ConsoleHandler
java.util.logging.SimpleFormatter.format=%5$s %6$s\n
java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter
java.util.logging.ConsoleHandler.level=FINEST
.level=FINEST
io.vertx.level=INFO
io.netty.util.internal.PlatformDependent.level=INFO
Enter fullscreen mode Exit fullscreen mode

that FINEST look awkward I know, it is from java 1.4

Top comments (0)