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 any LogListener registered at an appropriate LogLevel. The LogListener can then get the log line using the getMessage() method. See LogListener.

  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the date for this log entry.
    Returns the log level for this log entry.
    Returns the message text for this log entry.
  • Method Details

    • getMessage

      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

      Date getDate()

      Returns the date for this log entry.

      Returns:
      The date for this log level.