We use CXF for JAX-WS. In our project, we handled exceptions thrown by CXF (e.g. can't connect to server). So, the exceptions are expected and correctly handled. We also use SLF4J to perform logging for our project.
However, no matter the exceptions are handled or not, CXF will write the stack trace to SLF4J log. This pollutes our log. My question is: is it possible to disable CXF logging or redirect CXF logging to another log file? Thanks
