Inheritance diagram for log4cplus::helpers::LogLog:
Public Member Functions | |
void | setInternalDebugging (bool enabled) |
Allows to enable/disable log4cplus internal logging. | |
void | setQuietMode (bool quietMode) |
In quite mode no LogLog generates strictly no output, not even for errors. | |
void | debug (const log4cplus::tstring &msg) |
This method is used to output log4cplus internal debug statements. | |
void | error (const log4cplus::tstring &msg) |
This method is used to output log4cplus internal error statements. | |
void | warn (const log4cplus::tstring &msg) |
This method is used to output log4cplus internal warning statements. | |
Static Public Member Functions | |
static log4cplus::helpers::SharedObjectPtr< LogLog > | getLogLog () |
Returns a reference to the LogLog singleton. | |
Public Attributes | |
LOG4CPLUS_MUTEX_PTR_DECLARE | mutex |
Private Member Functions | |
LogLog (const LogLog &) | |
Private Attributes | |
bool | debugEnabled |
bool | quietMode |
Log4cplus components cannot make log4cplus logging calls. However, it is sometimes useful for the user to learn about what log4cplus is doing. You can enable log4cplus internal logging by defining the log4cplus.configDebug variable.
All log4cplus internal debug calls go to cout
where as internal error messages are sent to cerr
. All internal messages are prepended with the string "log4clus: ".
Definition at line 48 of file loglog.h.
void log4cplus::helpers::LogLog::setQuietMode | ( | bool | quietMode | ) |
In quite mode no LogLog generates strictly no output, not even for errors.
quietMode | A true for not |
void log4cplus::helpers::LogLog::debug | ( | const log4cplus::tstring & | msg | ) |
This method is used to output log4cplus internal debug statements.
Output goes to STD_NAMESPACE cout
.
void log4cplus::helpers::LogLog::error | ( | const log4cplus::tstring & | msg | ) |
This method is used to output log4cplus internal error statements.
There is no way to disable error statements. Output goes to STD_NAMESPACE cerr
.
void log4cplus::helpers::LogLog::warn | ( | const log4cplus::tstring & | msg | ) |
This method is used to output log4cplus internal warning statements.
There is no way to disable warning statements. Output goes to STD_NAMESPACE cerr
.