18 #ifndef _LOG4CXX_HELPERS_LOG_LOG_H 19 #define _LOG4CXX_HELPERS_LOG_LOG_H 54 static LogLog& getInstance();
61 static void setInternalDebugging(
bool enabled);
68 static void debug(
const LogString& msg,
const std::exception& e);
77 static void error(
const LogString& msg,
const std::exception& e);
86 static void setQuietMode(
bool quietMode);
94 static void warn(
const LogString& msg,
const std::exception& e);
98 static void emit(
const std::exception& ex);
103 #define LOGLOG_DEBUG(log) { \ 104 log4cxx::helpers::LogLog::debug(log) ; } 106 #define LOGLOG_WARN(log) { \ 107 log4cxx::helpers::LogLog::warn(log) ; } 109 #define LOGLOG_ERROR(log) { \ 110 log4cxx::helpers::LogLog::warn(log); } 112 #endif //_LOG4CXX_HELPERS_LOG_LOG_H This class used to output log statements from within the log4cxx package.
Definition: loglog.h:41
Definition: appender.h:32
std::basic_string< logchar > LogString
Definition: logstring.h:66