ITLogLib class overview

Class ITLogLib represents the logging library. You use it mainly to:

§      initialize the library

§      open logchannels

§      get detailled information about errors which occurred

 

Class ITLogLib is a singleton -- conforms to the design pattern "singleton" --, which means that there exists exactly one instance of this class. This instance is automatically created for your before the startup of your code and destroyed after your program ends.

To access this instance use the global function GetITLogLib(). It returns a reference to the single instance.

 

Warning: You shouldn’t create instances yourself. Alas, currently you don’t get compile errors in this case, as the default constructor of ITLogLib isn’t protected or private.