void CCFXRequest::WriteDebug(LPCSTR lpszOutput)
Writes text output into the debug stream. The text is only displayed to the end-user if the tag contains the Debug
attribute. (For more information, see CCFXRequest::Debug.)
Parameter | Description |
---|---|
lpszOutput |
Text to output |
The following example checks whether the Debug
attribute is present; if so, it writes a brief debug message:
if ( pRequest->Debug() )
{
pRequest->WriteDebug( "Top secret debug info" ) ;
}