How to disable trace outputs

About this task
To disable trace output when tracing to WebSphere Application Server, display or file, you can disable the trace output for all listed trace ID by setting the global trace level to NONE. Make sure that all the trace request ID of the application and BTT product is listed in the requestersComponents section of the trace configuration. If the trace ID is not listed in the configuration, the WAS will output the trace with the default level INFO for that trace ID.

For example, the application use #BCTP, #CMKS, com.xxx.yyy as trace request ID when calling BTT trace API. To disable the trace to WAS, use the trace configurations:

Example
<kColl id="traces">
			<field id="initializer" value="com.ibm.btt.base.TraceInitializer"/>
 	        <!--  trace to WAS --> 			<field
id="traceTargetFactoryImplClass"
value="com.ibm.btt.base.BTTLogFactoryToWASImp"/>
 			 			<field id="traceLevels" value="NONE"/>
 			<kColl id="requestersComponents">
				 				<traceRequester id="com.ibm.btt.*" trace="yes"
traceLevels="ERROR"/>
				
<traceRequester id="#BCTP" trace="yes" traceLevels="INFO"/>
<traceRequester id="#CMKS" trace="yes" traceLevels="DEBUG"/>
<traceRequester id="com.xxx.yyy.*" trace="yes" traceLevels="DEBUG"/>
			</kColl>
</kColl>