The log manager handles the creation and retrieval of logs for the application.
More...
|
| LogManager () |
|
| ~LogManager () |
|
Log * | createLog (const String &name, bool defaultLog=false, bool debuggerOutput=true, bool suppressFileOutput=false) |
| Creates a new log with the given name.
|
|
void | destroyLog (const String &name) |
| Closes and removes a named log.
|
|
void | destroyLog (Log *log) |
| Closes and removes a log.
|
|
Log * | getDefaultLog () |
| Returns a pointer to the default log.
|
|
Log * | getLog (const String &name) |
| Retrieves a log managed by this class.
|
|
void | logError (const String &message, bool maskDebug=false) |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
|
void | logMessage (const String &message, LogMessageLevel lml=LML_NORMAL, bool maskDebug=false) |
| Log a message to the default log.
|
|
void | logMessage (LogMessageLevel lml, const String &message, bool maskDebug=false) |
| Log a message to the default log (signature for backward compatibility).
|
|
void | logWarning (const String &message, bool maskDebug=false) |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
|
Log * | setDefaultLog (Log *newLog) |
| Sets the passed in log as the default log.
|
|
void | setLogDetail (LoggingLevel ll) |
|
void | setMinLogLevel (LogMessageLevel lml) |
| sets the minimal LogMessageLevel for the default log
|
|
Log::Stream | stream (LogMessageLevel lml=LML_NORMAL, bool maskDebug=false) |
| Get a stream on the default log.
|
|
| Singleton (void) |
|
| ~Singleton (void) |
|
The log manager handles the creation and retrieval of logs for the application.
This class will create new log files and will retrieve instances of existing ones. Other classes wishing to log output can either create a fresh log or retrieve an existing one to output to. One log is the default log, and is the one written to when the logging methods of this class are called.
- By default, Root will instantiate a LogManager (which becomes the Singleton instance) on construction, and will create a default log based on the Root construction parameters. If you want more control, for example redirecting log output right from the start or suppressing debug output, you need to create a LogManager yourself before creating a Root instance, then create a default log. Root will detect that you've created one yourself and won't create one of its own, thus using all your logging preferences from the first instance.