Apache Log4cxx  Version 1.8.0
Loading...
Searching...
No Matches
loglog.h File Reference
#include <log4cxx/logstring.h>
#include <log4cxx/logger.h>
#include <log4cxx/helpers/widelife.h>
#include <exception>
#include <mutex>

Go to the source code of this file.

Classes

class  log4cxx::helpers::LogLog
 This class used to output log statements from within the log4cxx package. More...

Namespaces

namespace  log4cxx
namespace  log4cxx::helpers

Macros

#define LOGLOG_DEBUG(logger, message)
#define LOGLOG_TRACE(logger, message)
#define LOGLOG_WARN(message)
 Send message to helpers::SystemErrWriter using the configured warning output style.
#define LOGLOG_ERROR(message)
 Send message to helpers::SystemErrWriter using the configured error output style.

Macro Definition Documentation

◆ LOGLOG_DEBUG

#define LOGLOG_DEBUG ( logger,
message )

◆ LOGLOG_ERROR

#define LOGLOG_ERROR ( message)
Value:
{ \
LOG4CXX_NS::helpers::MessageBuffer buf; \
LOG4CXX_NS::helpers::LogLog::error(buf.str(buf << message)); }

Send message to helpers::SystemErrWriter using the configured error output style.

Parameters
messagea valid parameter to an operator<<(std::ostream&. ...) overload.

◆ LOGLOG_TRACE

#define LOGLOG_TRACE ( logger,
message )

◆ LOGLOG_WARN

#define LOGLOG_WARN ( message)
Value:
{ \
LOG4CXX_NS::helpers::MessageBuffer buf; \
LOG4CXX_NS::helpers::LogLog::warn(buf.str(buf << message)); }

Send message to helpers::SystemErrWriter using the configured warning output style.

Parameters
messagea valid parameter to an operator<<(std::ostream&. ...) overload.