Public Member Functions | |
DefaultLogger (void) | |
Constructor for DefaultLogger object. | |
virtual | ~DefaultLogger (void) |
Destructor for DefaultLogger object. | |
virtual void | logEvent (const String &message, LoggingLevel level=Standard) |
Add an event to the log. | |
virtual void | setLogFilename (const String &filename, bool append=false) |
Set the name of the log file where all subsequent log entries should be written. | |
Protected Attributes | |
std::ofstream | d_ostream |
Stream used to implement the logger. | |
std::vector< std::pair< String, LoggingLevel > > | d_cache |
Used to cache log entries before log file is created. | |
std::ostringstream | d_workstream |
Used to build log entry strings. | |
bool | d_caching |
true while log entries are beign cached (prior to logfile creation) |
void CEGUI::DefaultLogger::logEvent | ( | const String & | message, | |
LoggingLevel | level = Standard | |||
) | [virtual] |
Add an event to the log.
message | String object containing the message to be added to the event log. | |
level | LoggingLevel for this message. If level is greater than the current set logging level, the message is not logged. |
Implements CEGUI::Logger.
References d_cache, d_caching, CEGUI::Logger::d_level, d_ostream, d_workstream, CEGUI::Errors, CEGUI::Informative, CEGUI::Insane, CEGUI::Standard, and CEGUI::Warnings.
Referenced by DefaultLogger(), and ~DefaultLogger().
void CEGUI::DefaultLogger::setLogFilename | ( | const String & | filename, | |
bool | append = false | |||
) | [virtual] |
Set the name of the log file where all subsequent log entries should be written.
filename | Name of the file to put log messages. | |
append |
|
Implements CEGUI::Logger.
References CEGUI::String::c_str(), d_cache, d_caching, CEGUI::Logger::d_level, and d_ostream.