Skip to content
Advertisement

QuarkusTest does not output log in dev mode but works in test

Hello all So running Quarkus with

JavaScript

does not output any loggin from my tests, however using the test environment

JavaScript

does output logs. I can’t seem to figure out why..

In my pom.xml i have configured the logmanager

JavaScript

and in my application.properties i have

JavaScript

In my test i have

JavaScript

But this only prints in test mode. How do i configure it for dev mode?

Advertisement

Answer

Test output from continuous testing (in dev mode) can be turned on/off by hitting the o key in the terminal (when the window with Quarkus is in focus). The logs from tests will get mixed up with logs from the dev mode instance, so it can get a bit confusing.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement