Static Public Member Functions | |
static void | setInternalDebugging (bool enabled) |
static void | debug (const String &msg) |
static void | error (const String &msg) |
static void | setQuietMode (bool quietMode) |
static void | warn (const String &msg) |
Static Public Attributes | |
static String | DEBUG_KEY = _T("log4j.debug") |
Static Protected Attributes | |
static bool | quietMode = false |
Log4cxx components cannot make log4cxx logging calls. However, it is sometimes useful for the user to learn about what log4cxx is doing. You can enable log4cxx internal logging by calling the setInternalDebugging method.
All log4cxx internal debug calls go to standard output where as internal error messages are sent to standard error output. All internal messages are prepended with the string "log4cxx: ".
|
This method is used to output log4cxx internal debug statements. Output goes to the standard output. |
|
This method is used to output log4cxx internal error statements. There is no way to disable error statements. Output goes to stderr. |
|
Allows to enable/disable log4cxx internal logging. |
|
In quite mode LogLog generates strictly no output, not even for errors.
|
|
This method is used to output log4cxx internal warning statements. There is no way to disable warning statements. Output goes to stderr. |
|
Defining this value makes log4j print log4j-internal debug statements to The value of this string is log4j.debug. Note that the search for all option names is case sensitive. |
|
In quietMode not even errors generate any output. |