ITOutputLogChannel::QuickLog

 

bool QuickLog(

const char* pModuleName, const char* pCaseName,

const char* pText, const ITLogLevel LogLevel= LEVEL_INFO);

 

Purpose:

§      output a logmessage in the logchannel

 

The method behaves similar to the global method QuickLog, see there.

 

These code fragments have the same effect (with c of type ITOutputLogChannel&):

 c.QuickLog(pModuleName, pCaseName, pText, LogLevel);

and

 ::QuickLog(pModuleName, pCaseName, pText, LogLevel,

/*pLogChannelName*/ c.GetName());

 

See also:

§      global method QuickLog