Hi CXF Team,
I have an eclipse java project. I am using CXF.xml for logging
configuration. cxf.xml file in at the location /src/main/resources/cxf.xml.
When I run my test from location /src/main/java/test/test.java, I am not
able to see any effect of logging using CXF.xml.
CXF.xml is at the classpath & I am able to print it using below lines :
URL url = getClass().getClassLoader().getResource("mycxf.xml");
System.out.println("url" + url);
I am not sure what's wrong. Could you please help.
Thanks!!!