WAS v8.5 > Administer applications and their environment > Welcome to administering Messaging resources > Manage messaging with the default messaging provider > Use JMS from stand-alone clients to interoperate with service integration resources > Add tracing and logging for stand-alone clientsTrace user interface for stand-alone clients
To enable trace, we can either use a long form or a short form system property.
IBM recommends using the HPEL log and trace infrastructure. With HPEL, one views logs using the LogViewer command-line tool in PROFILE/bin.
Long form system properties
The long form system property takes priority over the short form and uses system properties that are unique to WebSphere Application Server.
Long form system properties. The table contains the list of long form system properties and the descriptions of the properties.
Property Description com.ibm.ejs.ras.lite.traceSpecification The trace specification string com.ibm.ejs.ras.lite.traceFileName The trace destination (<file>, stdout, stderr, java,util.logging) com.ibm.ejs.ras.lite.maxFileSize Maximum trace file size in MB (if the trace destination is a file) com.ibm.ejs.ras.lite.maxFiles Maximum number of trace files kept (if the trace destination is a file) com.ibm.ejs.ras.lite.traceFormat The trace output format, which can be either basic or advanced (the default is basic) Long form example:
-Dcom.ibm.ejs.ras.lite.traceSpecification=SIB*=all -Dcom.ibm.ejs.ras.lite.traceFileName=c:/trace.log -Dcom.ibm.ejs.ras.lite.maxFileSize=20 -Dcom.ibm.ejs.ras.lite.maxFiles=8
Short form system property
The short form uses a system property that is compatible with existing WAS clients but that, because this property is unqualified, might clash with other third party technologies that are running in the same Java runtime environment (JRE).
The short form system property is:
traceSettingsFile
This property must specify a loadable properties file that can contain the following properties:
Properties in loadable system properties file. The table includes the list of loadable system properties and the descriptions of the properties.
Property Description traceFileName The trace destination (file, stdout, stderr, java,util.logging) maxFilesSize Maximum trace file size in MB (if the trace destination is a file) maxFiles Maximum number of trace files kept (if the trace destination is a file) <traceSpec> The trace specification traceFormat The trace output format, which can be either basic or advanced (the default is basic) The following example shows how to use the short form system property:
SIBTrm=all:SIBMfp=all traceFileName=c:/trace.log
Special meanings for trace file name values
Some trace file name values have a special meaning:
- stdout - causes trace records to be written to stdout
- stderr - causes trace records to be written to stderr
- java.util.logging - causes trace records to be written to java.util.logging
Using any other name causes the trace records to be written to a file of that name.