SetWriteDbgLevel
Syntax
void setWriteDbgLevel (unsigned int priority);
Function
This function sets the priority level for thewriteDbgLevelCAPL function. The output priority must be set for every network node.
Parameters
priority Priority of current CAPL node for output to the Write Window.Rays for priority: 0 to 15
Return Values
—
int i = 10;int j = 12;setWriteDbgLevel(7);writeDbgLevel (4, "This is shown: h= %lxh",j);// Output: This is shown: h= 0chwriteDbgLevel (9, "This is not shown: d= %ld",i);// No output
write | writeDbgLevel