ITLogMsg::Create methods

 

ITLogMsg has two Create methods:

§      void Create(const char* pModuleName, const char* pCaseName,
const ITLogLevel LogLevel = LEVEL_INFO,
const char* pLogChannelName = "StdLog");

creates an ITLogMsg object that references a new underlying "true" logmessage object. This underlying object is initialized using the parameters given. The meaning of the parameters is explained in ITLogMsg Class.

§      void Create(const char* pModuleName, const char* pCaseName,
const ITLogLevel LogLevel,
ITOutputLogChannel& LogChannel);

similar to the previous method, but here the logchannel is given by its object instead of its name (as string).

 

See also:

§      ITLogMsg constructors