Apache log4cxx
Version 0.11.0
|
The internal representation of logging events. More...
Public Types | |
typedef spi::KeySet | KeySet |
Public Member Functions | |
LoggingEvent () | |
For serialization only. More... | |
LoggingEvent (const LogString &logger, const LevelPtr &level, const LogString &message, const log4cxx::spi::LocationInfo &location) | |
Instantiate a LoggingEvent from the supplied parameters. More... | |
~LoggingEvent () | |
const LevelPtr & | getLevel () const |
Return the level of this event. More... | |
const LogString & | getLoggerName () const |
Return the name of the logger. More... | |
const LogString & | getMessage () const |
Return the message for this logging event. More... | |
const LogString & | getRenderedMessage () const |
Return the message for this logging event. More... | |
const LogString & | getThreadName () const |
Return the threadName of this event. More... | |
log4cxx_time_t | getTimeStamp () const |
The number of microseconds elapsed from 01.01.1970 until logging event was created. More... | |
const log4cxx::spi::LocationInfo & | getLocationInformation () const |
bool | getNDC (LogString &dest) const |
This method appends the NDC for this event to passed string. More... | |
void | write (helpers::ObjectOutputStream &os, helpers::Pool &p) const |
Writes the content of the LoggingEvent in a format compatible with log4j's serialized form. More... | |
bool | getMDC (const LogString &key, LogString &dest) const |
Appends the the context corresponding to the key parameter. More... | |
KeySet | getMDCKeySet () const |
Returns the set of of the key values in the MDC for the event. More... | |
void | getMDCCopy () const |
Obtain a copy of this thread's MDC prior to serialization or asynchronous logging. More... | |
bool | getProperty (const LogString &key, LogString &dest) const |
Return a previously set property. More... | |
KeySet | getPropertyKeySet () const |
Returns the set of of the key values in the properties for the event. More... | |
void | setProperty (const LogString &key, const LogString &value) |
Set a string property using a key and a string value. More... | |
Public Member Functions inherited from ObjectImpl | |
ObjectImpl () | |
virtual | ~ObjectImpl () |
void | addRef () const |
void | releaseRef () const |
Public Member Functions inherited from Object | |
virtual const helpers::Class & | getClass () const |
virtual | ~Object () |
virtual bool | instanceof (const Class &clazz) const =0 |
virtual const void * | cast (const Class &clazz) const =0 |
Static Public Member Functions | |
static log4cxx_time_t | getStartTime () |
Returns the time when the application started, in microseconds elapsed since 01.01.1970. More... | |
Static Public Member Functions inherited from Object | |
static const helpers::Class & | getStaticClass () |
static const log4cxx::helpers::ClassRegistration & | registerClass () |
Additional Inherited Members | |
Protected Attributes inherited from ObjectImpl | |
unsigned int volatile | ref |
The internal representation of logging events.
When an affirmative decision is made to log then a LoggingEvent
instance is created. This instance is passed around to the different log4cxx components.
This class is of concern to those wishing to extend log4cxx.
typedef spi::KeySet KeySet |
LoggingEvent | ( | ) |
For serialization only.
LoggingEvent | ( | const LogString & | logger, |
const LevelPtr & | level, | ||
const LogString & | message, | ||
const log4cxx::spi::LocationInfo & | location | ||
) |
Instantiate a LoggingEvent from the supplied parameters.
Except timeStamp all the other fields of LoggingEvent
are filled when actually needed.
logger | The logger of this event. |
level | The level of this event. |
message | The message of this event. |
location | location of logging request. |
~LoggingEvent | ( | ) |
|
inline |
Return the level of this event.
|
inline |
|
inline |
Return the name of the logger.
Appends the the context corresponding to the key
parameter.
If there is a local MDC copy, possibly because we are in a logging server or running inside AsyncAppender, then we search for the key in MDC copy, if a value is found it is returned. Otherwise, if the search in MDC copy returns an empty result, then the current thread's MDC
is used.
Note that both the local MDC copy and the current thread's MDC are searched.
key | key. |
dest | string to which value, if any, is appended. |
void getMDCCopy | ( | ) | const |
Obtain a copy of this thread's MDC prior to serialization or asynchronous logging.
KeySet getMDCKeySet | ( | ) | const |
|
inline |
Return the message for this logging event.
bool getNDC | ( | LogString & | dest | ) | const |
Return a previously set property.
key | key. |
dest | string to which value, if any, is appended. |
KeySet getPropertyKeySet | ( | ) | const |
Returns the set of of the key values in the properties for the event.
The returned set is unmodifiable by the caller.
|
inline |
Return the message for this logging event.
|
static |
Returns the time when the application started, in microseconds elapsed since 01.01.1970.
|
inline |
Return the threadName of this event.
|
inline |
The number of microseconds elapsed from 01.01.1970 until logging event was created.
Set a string property using a key and a string value.
since 1.3
void write | ( | helpers::ObjectOutputStream & | os, |
helpers::Pool & | p | ||
) | const |
Writes the content of the LoggingEvent in a format compatible with log4j's serialized form.