#include <loglevel.h>
Public Member Functions | |
LogLevelManager () | |
~LogLevelManager () | |
log4cplus::tstring | toString (LogLevel ll) const |
This method is called by all Layout classes to convert a LogLevel into a string. | |
LogLevel | fromString (const log4cplus::tstring &s) const |
This method is called by all classes internally to log4cplus to convert a string into a LogLevel. | |
void | pushToStringMethod (LogLevelToStringMethod newToString) |
When creating a "derived" LogLevel, a LogLevelToStringMethod should be defined and registered with the LogLevelManager by calling this method. | |
void | pushFromStringMethod (StringToLogLevelMethod newFromString) |
When creating a "derived" LogLevel, a StringToLogLevelMethod should be defined and registered with the LogLevelManager by calling this method. |
This class is also how "derived" LogLevels are created. Here are the steps to creating a "derived" LogLevel:
Definition at line 117 of file loglevel.h.
|
|
|
|
|
This method is called by all classes internally to log4cplus to convert a string into a LogLevel.
Note: It traverses the list of |
|
When creating a "derived" LogLevel, a
|
|
When creating a "derived" LogLevel, a
|
|
This method is called by all Layout classes to convert a LogLevel into a string.
Note: It traverses the list of |