Package com.mendix.logging
Class LogMessage
- java.lang.Object
-
- com.mendix.logging.LogMessage
-
public class LogMessage extends java.lang.Object
LogMessage objects hold all information of Log Message, and get passed around through the logging system.
-
-
Constructor Summary
Constructors Constructor Description LogMessage(ILogNode node, LogLevel level, java.lang.Object message, java.lang.Throwable cause)
Creates a new log message with the specified information.LogMessage(ILogNode node, LogLevel level, java.lang.Object message, java.lang.Throwable cause, long timestamp)
Creates a new log message with the specified information.
-
-
-
Constructor Detail
-
LogMessage
public LogMessage(ILogNode node, LogLevel level, java.lang.Object message, java.lang.Throwable cause)
Creates a new log message with the specified information.- Parameters:
node
- the log node on which the message was loggedlevel
- the log level at which the message was loggedmessage
- the log messagecause
- the log exception to log (can be null)
-
LogMessage
public LogMessage(ILogNode node, LogLevel level, java.lang.Object message, java.lang.Throwable cause, long timestamp)
Creates a new log message with the specified information.- Parameters:
node
- the log node on which the message was loggedlevel
- the log level at which the message was loggedmessage
- the log messagecause
- the log exception to log (can be null)timestamp
- the log exception time
-
-