Crazy Eddies GUI System  0.7.2
Public Member Functions | Protected Attributes | List of all members
CEGUI::Logger Class Referenceabstract

Abstract class that defines the interface of a logger object for the GUI system.

The default implementation of this interface is the DefaultLogger class; if you want to perform special logging, derive your own class from Logger and initialize a object of that type before you create the CEGUI::System singleton. More...

+ Inheritance diagram for CEGUI::Logger:
+ Collaboration diagram for CEGUI::Logger:

Public Member Functions

 Logger (void)
 Constructor for Logger object.
 
virtual ~Logger (void)
 Destructor for Logger object.
 
void setLoggingLevel (LoggingLevel level)
 Set the level of logging information that will get out to the log file. More...
 
LoggingLevel getLoggingLevel (void) const
 return the current logging level setting More...
 
virtual void logEvent (const String &message, LoggingLevel level=Standard)=0
 Add an event to the log. More...
 
virtual void setLogFilename (const String &filename, bool append=false)=0
 Set the name of the log file where all subsequent log entries should be written. The interpretation of file name may differ depending on the concrete logger implementation. More...
 

Protected Attributes

LoggingLevel d_level
 Holds current logging level.
 

Additional Inherited Members

- Static Public Member Functions inherited from CEGUI::Singleton< Logger >
static LoggergetSingleton (void)
 
static LoggergetSingletonPtr (void)
 
- Static Protected Attributes inherited from CEGUI::Singleton< Logger >
static Loggerms_Singleton
 

Detailed Description

Abstract class that defines the interface of a logger object for the GUI system.

The default implementation of this interface is the DefaultLogger class; if you want to perform special logging, derive your own class from Logger and initialize a object of that type before you create the CEGUI::System singleton.

Member Function Documentation

LoggingLevel CEGUI::Logger::getLoggingLevel ( void  ) const
inline

return the current logging level setting

Returns
One of the LoggingLevel enumerated values specifying the current level of logging
virtual void CEGUI::Logger::logEvent ( const String message,
LoggingLevel  level = Standard 
)
pure virtual

Add an event to the log.

Parameters
messageString object containing the message to be added to the event log.
levelLoggingLevel for this message. If level is greater than the current set logging level, the message is not logged.
Returns
Nothing

Implemented in CEGUI::DefaultLogger.

virtual void CEGUI::Logger::setLogFilename ( const String filename,
bool  append = false 
)
pure virtual

Set the name of the log file where all subsequent log entries should be written. The interpretation of file name may differ depending on the concrete logger implementation.

Note
When this is called, and the log file is created, any cached log entries are flushed to the log file.
Parameters
filenameName of the file to put log messages.
append
  • true if events should be added to the end of the current file.
  • false if the current contents of the file should be discarded.

Implemented in CEGUI::DefaultLogger.

void CEGUI::Logger::setLoggingLevel ( LoggingLevel  level)
inline

Set the level of logging information that will get out to the log file.

Parameters
levelOne of the LoggingLevel enumerated values that specified the level of logging information required.
Returns
Nothing