ITOutputLogChannelQuickLog

 

§      int ITLogChannelQuickLog (HLOGCHANNEL hLogChannel, const char* pModuleStr, const char* pCaseStr, const char* pText);

§      int ITLogChannelQuickLogEx (HLOGCHANNEL hLogChannel, const char* pModuleStr, const char* pCaseStr, const char* pText, int LogLevel);

 

Purpose:

§      output a logmessage in the logchannel

 

Parameters:

§      hLogChannel (Input): Handle to the logchannel, the logmessage will be sent to

§      pModuleStr (Input): User defined specifier, describing a module or subsystem of the logging application.

§      pCaseStr (Input): User defined specifier, describing a use-case or operation of the logging application.

§      pText (Input): Logmessage text.

§      LogLevel (Input): One or more Loglevel constants (for combinations use the ‘|’ operator)
 (
LEVEL_INFO, LEVEL_WARNING, LEVEL_ERROR, LEVEL_ALARM)

 

The method behaves similar to the function QuickLog, using the logchannel represented by hLogChannel.

 

 

See also:

§         QuickLog