You can use the com.xyz.foo.level
configuration property described in Configuring logging at an individual package level to set fine-grained logging
for specified FUSE Services Framework logging subsystems.
Table 7.2 shows a list of available FUSE Services Framework logging subsystems.
Table 7.2. FUSE Services Framework Logging Subsystems
Subsystem | Description |
---|---|
com.iona.cxf.container
| FUSE Services Framework container |
org.apache.cxf.aegis
| Aegis binding |
org.apache.cxf.binding.coloc
| colocated binding |
org.apache.cxf.binding.http
| HTTP binding |
org.apache.cxf.binding.jbi
| JBI binding |
org.apache.cxf.binding.object
| Java Object binding |
org.apache.cxf.binding.soap
| SOAP binding |
org.apache.cxf.binding.xml
| XML binding |
org.apache.cxf.bus
| FUSE Services Framework bus |
org.apache.cxf.configuration
| configuration framework |
org.apache.cxf.endpoint
| server and client endpoints |
org.apache.cxf.interceptor
| interceptors |
org.apache.cxf.jaxws
| Front-end for JAX-WS style message exchange, JAX-WS handler processing, and interceptors relating to JAX-WS and configuration |
org.apache.cxf.jbi
| JBI container integration classes |
org.apache.cxf.jca
| JCA container integration classes |
org.apache.cxf.js
| JavaScript front-end |
org.apache.cxf.transport.http
| HTTP transport |
org.apache.cxf.transport.https
| secure version of HTTP transport, using HTTPS |
org.apache.cxf.transport.jbi
| JBI transport |
org.apache.cxf.transport.jms
| JMS transport |
org.apache.cxf.transport.local
| transport implementation using local file system |
org.apache.cxf.transport.servlet
| HTTP transport and servlet implementation for loading JAX-WS endpoints into a servlet container |
org.apache.cxf.ws.addressing
| WS-Addressing implementation |
org.apache.cxf.ws.policy
| WS-Policy implementation |
org.apache.cxf.ws.rm
| WS-ReliableMessaging (WS-RM) implementation |
org.apache.cxf.ws.security.wss4j
| WSS4J security implementation |
The WS-Addressing sample is contained in the
directory. Logging is configured in the InstallDir
/samples/ws_addressinglogging.properties
file located in that directory. The relevant lines of
configuration are shown in Example 7.10.
Example 7.10. Configuring Logging for WS-Addressing
java.util.logging.ConsoleHandler.formatter = demos.ws_addressing.common.ConciseFormatter ... org.apache.cxf.ws.addressing.soap.MAPCodec.level = INFO
The configuration in Example 7.10 enables the snooping of log messages relating to WS-Addressing headers, and displays them to the console in a concise form.
For information on running this sample, see the README.txt
file located in the
directory.InstallDir
/samples/ws_addressing