Writes a tracing message to the log destination.
Syntax
void traceWrite(int traceLevel, char * info, char * filterName);
Parameters
Tracing::LEVEL1 Tracing::LEVEL2 Tracing::LEVEL3 Tracing::LEVEL4 Tracing::LEVEL5
The method writes the trace message when the current trace level is greater than or equal to traceLevel.
Return values
None.
Notes
You can use the traceWrite() method to write your own tracing messages for an application.
To write a tracing message without a filter, specify NULL for filterName.
Examples
traceWrite(Tracing::LEVEL3, "Invalid LoginId", NULL);
See also
See also the description of the Tracing class.