Keycloak 17.0.1 Quarkus Syslog logging configurations

Hi guys, I need your help. I have installed keycloak 17.0.1 (quarkus distribution) on my local machine.
I need to send via syslog some logs produced by keycloak (user login and logout success)
Once installed in the keycloak.conf file I added the property “quarkus-properties-enabled=true”.
I created in the conf folder the file quarkus.properties (based on the documentation)
with the following directives inside:

LOGGING CONFIGS

quarkus.log.category. “org.keycloak.events”.level=TRACE

syslog logging

quarkus.log.syslog.enable=true
quarkus.log.syslog.hostname=http://…
quarkus.log.syslog.endpoint=…
quarkus.log.syslog.facility=local-use-6
quarkus.log.syslog.protocol=udp
quarkus.log.syslog.format=%d{HH:mm:ss} %-5p [%c{2.}] (%t) %s%e%n

the problem is that it does not only capture logs and logout success. Am I wrong in the log level declaration?

Thank you for your time

Hello,
I have the same issue.
Any solution?