Package com.caplin.streamlink
Interface LogInfo
-
public interface LogInfo
Stores log information including message and level of a log entry.
This will be passed into any
LogListener.onLog(com.caplin.streamlink.LogInfo)
method of anyLogListener
registered at an appropriateLogLevel
. The LogListener can then get the log line using thegetMessage()
method. SeeLogListener
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Date
getDate()
Returns the date for this log entry.LogLevel
getLevel()
Returns the log level for this log entry.java.lang.String
getMessage()
Returns the message text for this log entry.
-
-
-
Method Detail
-
getMessage
java.lang.String getMessage()
Returns the message text for this log entry.
- Returns:
- The message text.
-
getLevel
LogLevel getLevel()
Returns the log level for this log entry.
- Returns:
- The log level.
-
getDate
java.util.Date getDate()
Returns the date for this log entry.
- Returns:
- The date for this log level.
-
-