survivant / quarkus-logback

0 stars 0 forks source link

log level not setted in junit #1

Open survivant opened 2 years ago

survivant commented 2 years ago
quarkus.log.category."com.comact".level=DEBUG
quarkus.log.category."com.comact".min-level=DEBUG
quarkus.log.level=INFO
quarkus.log.file.enable=true
quarkus.log.file.level=INFO
quarkus.log.file.rotation.max-file-size=20M
quarkus.log.file.rotation.max-backup-index=2

Here my class where the logged in declared

image

here the breakpoint where the logger is created with the level setted.

image

if we go deeper, we see that the level is set to the default value which is : INFO

image

the parent is null

image
survivant commented 2 years ago

if I run a another project with mvn quarkus:dev the level DEBUG is setted

image

maybe it's a dependency that caused this problem

survivant commented 2 years ago
image