cciServiceTraceW writes a message to service trace, if service trace is active.
The message that is written to service trace has the following format:
<date-time stamp> <threadNumber> +cciServiceTrace <nodeName> <nodeType> <traceText>, <nodeLabel>
void cciServiceTraceW(
int* returnCode,
CciObject* object,
const CciChar* traceText
);
None. If an error occurs, the returnCode parameter indicates the reason for the error.
CciNode* thisNode = ((NODE_CONTEXT_ST*)context)->nodeObject;
const CciChar* traceText = CciString(">>_Switch_evaluate()",
BIP_DEF_COMP_CCSID);
cciServiceTraceW(&rc,(CciObject*)thisNode,traceText);
checkRC(rc);