|
| #define | LOG4CPP_PRIORITY_EMERG 0 |
| #define | LOG4CPP_PRIORITY_FATAL 0 |
| #define | LOG4CPP_PRIORITY_ALERT 100 |
| #define | LOG4CPP_PRIORITY_CRIT 200 |
| #define | LOG4CPP_PRIORITY_ERROR 300 |
| #define | LOG4CPP_PRIORITY_WARN 400 |
| #define | LOG4CPP_PRIORITY_NOTICE 500 |
| #define | LOG4CPP_PRIORITY_INFO 600 |
| #define | LOG4CPP_PRIORITY_DEBUG 700 |
| #define | LOG4CPP_PRIORITY_NOTSET 800 |
| #define | LOG4CPP_VARIADIC_MACROS_SUPPORTED 0 |
| #define | LOG4CPP_LOG_NO_VA(logger, priority, msg) |
| #define | LOG4CPP_DEBUG(logger, msg) |
| #define | LOG4CPP_INFO(logger, msg) |
| #define | LOG4CPP_NOTICE(logger, msg) |
| #define | LOG4CPP_WARN(logger, msg) |
| #define | LOG4CPP_ERROR(logger, msg) |
| #define | LOG4CPP_CRIT(logger, msg) |
| #define | LOG4CPP_ALERT(logger, msg) |
| #define | LOG4CPP_FATAL(logger, msg) |
| #define | LOG4CPP_EMERG(logger, msg) |
| #define | LOG4CPP_STREAM(logger, priority, streamSequence) |
| #define | LOG4CPP_DEBUG_S(logger, streamSequence) |
| #define | LOG4CPP_INFO_S(logger, streamSequence) |
| #define | LOG4CPP_NOTICE_S(logger, streamSequence) |
| #define | LOG4CPP_WARN_S(logger, streamSequence) |
| #define | LOG4CPP_ERROR_S(logger, streamSequence) |
| #define | LOG4CPP_CRIT_S(logger, streamSequence) |
| #define | LOG4CPP_ALERT_S(logger, streamSequence) |
| #define | LOG4CPP_FATAL_S(logger, streamSequence) |
| #define | LOG4CPP_EMERG_S(logger, streamSequence) |
Optional macro wrappers for loggers, include formatted and streaming style.
Define LOG4CPP_ACTIVE_LEVEL as one of the LOG4CPP_PRIORITY_* macros for compile-time stripping of lower-priority logging calls. The #define directive must precede the inclusion of this header file. All log macros with priority level lower than value of LOG4CPP_ACTIVE_LEVEL will be removed at compile time resulting in zero runtime overhead.
Formatting macros are not available on older compilers that lack variadic macro support. In such cases, only macros accepting static messages are defined.