com.ibm.websphere.ras
Uses of Class TraceComponent
Packages that use TraceComponent
Package | Description |
---|---|
com.ibm.websphere.ras |
Uses of TraceComponent in com.ibm.websphere.ras
Modifier and Type | Method and Description |
---|---|
|
Tr.register(java.lang.Class<?> aClass)
Register the provided class with the trace service.
|
|
Tr.register(java.lang.Class<?> aClass,java.lang.String group)
Register the provided class with the trace service and assign it to the
provided group name.
|
|
Tr.register(java.lang.Class<?> aClass,java.lang.String group,java.lang.String bundle)
Register the provided class with the trace service and assign it to the
provided group name.
|
|
Tr.register(java.lang.String name,java.lang.Class<?> aClass,java.lang.String group)
Register the provided name with the trace service and assign it to the
provided group name.
|
|
Tr.register(java.lang.String name,java.lang.Class<?> aClass,java.lang.String[] groups)
Register the provided name with the trace service and assign it to the
provided groups.
|
|
Tr.register(java.lang.String name,java.lang.Class<?> aClass,java.lang.String[] groups,java.lang.String bundle)
Register the provided name with the trace service and assign it to the
provided groups.
|
|
Tr.register(java.lang.String name,java.lang.Class<?> aClass,java.lang.String group,java.lang.String bundle)
Register the provided name with the trace service and assign it to the
provided group name.
|
Modifier and Type | Method and Description |
---|---|
|
Tr.audit(TraceComponent tc,java.lang.String msgKey,java.lang.Object... objs)
Print the provided translated message if the input trace component allows
audit level messages.
|
|
Tr.debug(java.lang.Object id,TraceComponent tc,java.lang.String msg,java.lang.Object... objs)
If debug level diagnostic trace is enabled for the specified
TraceComponent , log the provided trace point.
|
|
Tr.debug(TraceComponent tc,java.lang.String msg,java.lang.Object... objs)
If debug level diagnostic trace is enabled for the specified
TraceComponent , log the provided trace point.
|
|
Tr.dump(TraceComponent tc,java.lang.String msg,java.lang.Object... objs)
Print the provided trace point if the input trace component allows dump
level messages.
|
|
Tr.entry(java.lang.Object id,TraceComponent tc,java.lang.String methodName,java.lang.Object... objs)
Print the provided trace point if the input trace component allows entry
level messages.
|
|
Tr.entry(TraceComponent tc,java.lang.String methodName,java.lang.Object... objs)
Print the provided trace point if the input trace component allows entry
level messages.
|
|
Tr.error(TraceComponent tc,java.lang.String msgKey,java.lang.Object... objs)
Print the provided translated message if the input trace component allows
error level messages.
|
|
Tr.event(java.lang.Object id,TraceComponent tc,java.lang.String msg,java.lang.Object... objs)
Print the provided trace point if the input trace component allows event
level messages.
|
|
Tr.event(TraceComponent tc,java.lang.String msg,java.lang.Object... objs)
Print the provided trace point if the input trace component allows event
level messages.
|
|
Tr.exit(java.lang.Object id,TraceComponent tc,java.lang.String methodName)
Print the provided trace point if the input trace component allows exit
level messages.
|
|
Tr.exit(java.lang.Object id,TraceComponent tc,java.lang.String methodName,java.lang.Object o)
Print the provided trace point if the input trace component allows exit
level messages.
|
|
Tr.exit(TraceComponent tc,java.lang.String methodName)
Print the provided trace point if the input trace component allows exit
level messages.
|
|
Tr.exit(TraceComponent tc,java.lang.String methodName,java.lang.Object o)
Print the provided trace point if the input trace component allows exit
level messages.
|
|
Tr.fatal(TraceComponent tc,java.lang.String msgKey,java.lang.Object... objs)
Print the provided translated message if the input trace component allows
fatal level messages.
|
|
Tr.formatMessage(TraceComponent tc,java.util.Locale locale,java.lang.String msgKey,java.lang.Object... objs)
Translate a message in the context of the input trace component.
|
|
Tr.formatMessage(TraceComponent tc,java.lang.String msgKey,java.lang.Object... objs)
Translate a message in the context of the input trace component using
the default locale.
|
|
Tr.info(TraceComponent tc,java.lang.String msgKey,java.lang.Object... objs)
Print the provided translated message if the input trace component allows
info level messages.
|
|
TrConfigurator.registerTraceComponent(TraceComponent tc)
This method (to register pre-created TraceComponents) is needed:
but it should not be on the main/base Tr API, as it is not something
that should be called frequently.
|
|
TraceComponentChangeListener.traceComponentRegistered(TraceComponent tc)
Callback indicating the specified trace component was registered.
|
|
TraceComponentChangeListener.traceComponentUpdated(TraceComponent tc)
Callback indicating the specified trace component was updated.
|
|
Tr.warning(TraceComponent tc,java.lang.String msgKey,java.lang.Object... objs)
Print the provided translated message if the input trace component allows
warning level messages.
|