18 #ifndef _LOG4CXX_HELPERS_LOG_LOG_H 19 #define _LOG4CXX_HELPERS_LOG_LOG_H 55 static LogLog& getInstance();
62 static void setInternalDebugging(
bool enabled);
69 static void debug(
const LogString& msg,
const std::exception& e);
78 static void error(
const LogString& msg,
const std::exception& e);
87 static void setQuietMode(
bool quietMode);
95 static void warn(
const LogString& msg,
const std::exception& e);
99 static void emit(
const std::exception& ex);
104 #define LOGLOG_DEBUG(log) { \ 105 log4cxx::helpers::LogLog::debug(log) ; } 107 #define LOGLOG_WARN(log) { \ 108 log4cxx::helpers::LogLog::warn(log) ; } 110 #define LOGLOG_ERROR(log) { \ 111 log4cxx::helpers::LogLog::warn(log); } 113 #endif //_LOG4CXX_HELPERS_LOG_LOG_H This class used to output log statements from within the log4cxx package.
Definition: loglog.h:42
Definition: appender.h:32
std::basic_string< logchar > LogString
Definition: logstring.h:66