Package com.adobe.granite.logging
Interface LogEntry
-
@ProviderType public interface LogEntry
A recorded log entry by theLogAnalyser
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getExceptionOutput()
Optional exception output attached to the log entry.java.lang.String
getLoggerName()
The name of the logger (category)LogLevel
getLogLevel()
The log level.java.lang.String
getMessage()
The log messagejava.lang.String
getThreadName()
The thread name of the logging thread.long
getTimeStamp()
The time stamp of the log entry.
-
-
-
Method Detail
-
getLogLevel
LogLevel getLogLevel()
The log level.- Returns:
- The log level
-
getMessage
java.lang.String getMessage()
The log message- Returns:
- The message
-
getLoggerName
java.lang.String getLoggerName()
The name of the logger (category)- Returns:
- The name of the logger (category)
-
getTimeStamp
long getTimeStamp()
The time stamp of the log entry.- Returns:
- The time stamp of the log entry
-
getExceptionOutput
java.lang.String getExceptionOutput()
Optional exception output attached to the log entry.- Returns:
- The exception stack trace or
null
-
getThreadName
java.lang.String getThreadName()
The thread name of the logging thread.- Returns:
- The thread name of the logging thread
-
-