Replies: 1 comment 3 replies
-
This does look like it should be reduced. I think even a debug is overkill as it shouldn't be logged that many times IMO. As a temporary workaround you could disable the logger for that specific category since luckily it appears to have it's own. With CLI it would be something like:
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
When the default exception mapper in MicroProfile Rest Client is disabled by setting the
microprofile.rest.client.disable.default.mapper=true
, a warning appears in the log for every single calls toRestClientBuilderImpl.build()
. The log is added in resteasy/resteasy#2850 and you can see that there is also a comment by reviewer about reducing the log level for this message todebug
, but it got merged anyway.I was wondering if it should really be considered as warning 🤔
We have recently upgraded to WildFly 26 and there are tons of such warnings in the log while it's an expected behavior in our case. I think others could have had a similar issue too.
Beta Was this translation helpful? Give feedback.
All reactions