Package org.xwiki.logging.event
Class BeginLogEvent
- java.lang.Object
-
- org.xwiki.logging.Message
-
- org.xwiki.logging.event.LogEvent
-
- org.xwiki.logging.event.BeginLogEvent
-
- All Implemented Interfaces:
Serializable
,CharSequence
,BeginEvent
,Event
- Direct Known Subclasses:
LogTreeNode
public class BeginLogEvent extends LogEvent implements BeginEvent
The beginning of a group of logs.- Since:
- 5.4RC1
- Version:
- $Id: e8d06083b52d02ea8f7fd359f6ae44706048bac1 $
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.xwiki.logging.event.LogEvent
MARKER_BEGIN, MARKER_END
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
BeginLogEvent()
Matches anyLogEvent
.BeginLogEvent(org.slf4j.Marker marker, LogLevel level, String message, Object[] argumentArray, Throwable throwable)
BeginLogEvent(org.slf4j.Marker marker, LogLevel level, String message, Object[] argumentArray, Throwable throwable, long timeStamp)
BeginLogEvent(LogEvent logEvent)
-
Method Summary
-
Methods inherited from class org.xwiki.logging.event.LogEvent
equals, getLevel, getTimeStamp, hashCode, log, matches, toString
-
Methods inherited from class org.xwiki.logging.Message
charAt, equals, getArgumentArray, getFormattedMessage, getMarker, getMessage, getMessageElements, getThrowable, getTranslationKey, length, subSequence
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.CharSequence
chars, codePoints
-
-
-
-
Constructor Detail
-
BeginLogEvent
protected BeginLogEvent()
Matches anyLogEvent
.
-
BeginLogEvent
public BeginLogEvent(LogEvent logEvent)
- Parameters:
logEvent
- the log event to copy
-
BeginLogEvent
public BeginLogEvent(org.slf4j.Marker marker, LogLevel level, String message, Object[] argumentArray, Throwable throwable)
- Parameters:
marker
- the log markerlevel
- the log levelmessage
- the log messageargumentArray
- the event arguments to insert in the messagethrowable
- the throwable associated to the event
-
BeginLogEvent
public BeginLogEvent(org.slf4j.Marker marker, LogLevel level, String message, Object[] argumentArray, Throwable throwable, long timeStamp)
- Parameters:
marker
- the log markerlevel
- the log levelmessage
- the log messageargumentArray
- the event arguments to insert in the messagethrowable
- the throwable associated to the eventtimeStamp
- the number of milliseconds elapsed from 1/1/1970 until logging event was created.- Since:
- 6.4M1
-
-