10#ifndef _LOG4CPP_NDC_HH
11#define _LOG4CPP_NDC_HH
74 static bool isUsedNDC;
75 static const std::string emptyString;
118 static const std::string&
get();
138 static std::string
pop();
148 static void push(
const std::string& message);
170 virtual const std::string&
_get()
const;
173 virtual std::string
_pop();
174 virtual void _push(
const std::string& message);
#define LOG4CPP_EXPORT
Definition Export.hh:26
ContextStack _stack
Definition NDC.hh:177
virtual ContextStack * _cloneStack()
Definition NDC.cpp:92
virtual std::string _pop()
Definition NDC.cpp:110
static std::string pop()
Clients should call this method before leaving a diagnostic context.
Definition NDC.cpp:57
NDC()
Definition NDC.cpp:82
static void setMaxDepth(int maxDepth)
Set the maximum nesting depth for the current NDC.
Definition NDC.cpp:67
static size_t getDepth()
Get the current nesting depth of this diagnostic context.
Definition NDC.cpp:49
static const std::string & get()
Get the current diagnostic context string.
Definition NDC.cpp:42
virtual void _clear()
Definition NDC.cpp:88
virtual size_t _getDepth() const
Definition NDC.cpp:102
static NDC & getNDC()
Return the NDC for the current thread.
Definition NDC.cpp:71
virtual void _setMaxDepth(int maxDepth)
Definition NDC.cpp:124
static void clear()
Clear any nested disgnostic information if any.
Definition NDC.cpp:34
static void push(const std::string &message)
Push new diagnostic context information for the current thread.
Definition NDC.cpp:61
virtual void _inherit(ContextStack *stack)
Definition NDC.cpp:106
std::vector< DiagnosticContext > ContextStack
Definition NDC.hh:87
virtual void _push(const std::string &message)
Definition NDC.cpp:116
static void inherit(ContextStack *stack)
Definition NDC.cpp:53
static ContextStack * cloneStack()
Clone the diagnostic context for the current thread.
Definition NDC.cpp:38
virtual const std::string & _get() const
Definition NDC.cpp:96
The top level namespace for all 'Log for C++' types and classes.
Definition AbortAppender.hh:16
DiagnosticContext(const std::string &message)
Definition NDC.cpp:16
std::string fullMessage
Definition NDC.hh:84
std::string message
Definition NDC.hh:83