Reputation: 21
In a Quarkus application i do some http calls where username and password are in the URL as query parameters (3rd party, I can't change this). The problem is, that the JBoss logger in DEBUG mode prints the call to the logfile and/or console with username and password as plain text.
Is there a way to filter or mask this output before the logger prints these information to the console or log file (or any other destination)?
As I found out, logback is not supported in Quarkus (at the moment).
The main point is, that Quarkus prints in debug-log-mode everything from the http call in plaintext to the log out. I think I need to grab the log output at very low level to filter it.
Upvotes: 2
Views: 763