Logging configuration after switching to Quarkus keycloak

I have successfully switched my works keycloak over to the quarkus configuration. Everything seems to be working, however I am seeing some small problems.

We are using the default log level, info, but it seems like we are seeing less logging then when we were on the wildfly version of keycloak, where we were also doing info level logging. We no longer a lot of common events like INROSPECT_TOKEN and similar.

Looking at the logging documentation, I am not seeing anything obvious that I am missing. Anyone have suggestions?

Success events are always logged on DEBUG level by default, since first version of Keycloak.
If you saw success event in your Wildfly-based environment, there must have been some configuration that success events will be logged on INFO level.
You can do this also in Quarkus distros, see e.g. my blog post:

1 Like

Thats exactly what I was missing. Thank you!

1 Like