java.io.Serializable
public final class LogEvent
extends java.lang.Object
implements java.io.Serializable
Modifier and Type | Field | Description |
---|---|---|
private java.lang.String |
m_category |
|
private ContextMap |
m_contextMap |
|
private java.lang.String |
m_message |
|
private Priority |
m_priority |
|
private java.lang.Throwable |
m_throwable |
|
private long |
m_time |
|
private static long |
START_TIME |
Constructor | Description |
---|---|
LogEvent() |
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
getCategory() |
Get the category that LogEvent relates to.
|
ContextMap |
getContextMap() |
Get ContextMap associated with LogEvent
|
java.lang.String |
getMessage() |
Get the message associated with event.
|
Priority |
getPriority() |
Get Priority for LogEvent.
|
long |
getRelativeTime() |
Get the time of the log event relative to start of application.
|
java.lang.Throwable |
getThrowable() |
Get throwabe instance associated with event.
|
long |
getTime() |
Get the absolute time of the log event.
|
private java.lang.Object |
readResolve() |
Helper method that replaces deserialized priority with correct singleton.
|
void |
setCategory(java.lang.String category) |
Set the LogEvent category.
|
void |
setContextMap(ContextMap contextMap) |
Set the ContextMap for this LogEvent.
|
void |
setMessage(java.lang.String message) |
Set the message for LogEvent.
|
void |
setPriority(Priority priority) |
Set the priority of LogEvent.
|
void |
setThrowable(java.lang.Throwable throwable) |
Set the throwable for LogEvent.
|
void |
setTime(long time) |
Set the absolute time of LogEvent.
|
private static final long START_TIME
private java.lang.String m_category
private java.lang.String m_message
private java.lang.Throwable m_throwable
private long m_time
private Priority m_priority
private ContextMap m_contextMap
public final Priority getPriority()
public final void setPriority(Priority priority)
priority
- the new LogEvent prioritypublic final ContextMap getContextMap()
public final void setContextMap(ContextMap contextMap)
contextMap
- the context mappublic final java.lang.String getCategory()
public final java.lang.String getMessage()
public final java.lang.Throwable getThrowable()
public final long getTime()
public final long getRelativeTime()
public final void setCategory(java.lang.String category)
category
- the categorypublic final void setMessage(java.lang.String message)
message
- the messagepublic final void setThrowable(java.lang.Throwable throwable)
throwable
- the instance of Throwablepublic final void setTime(long time)
time
- the timeprivate java.lang.Object readResolve() throws java.io.ObjectStreamException
java.io.ObjectStreamException
- if an error occursCopyright © 2003-2004 The Apache Software Foundation. All Rights Reserved.