Class LogEvent

java.lang.Object
com.biglybt.core.logging.LogEvent

public class LogEvent extends Object
Container to hold Log Event information.
  • Field Details

    • LT_INFORMATION

      public static final int LT_INFORMATION
      See Also:
    • LT_WARNING

      public static final int LT_WARNING
      See Also:
    • LT_ERROR

      public static final int LT_ERROR
      See Also:
    • timeStamp

      public Date timeStamp
      Date and Time this event occurred
    • relatedTo

      public final Object[] relatedTo
      A list of events that this entry is related to
    • logID

      public final LogIDs logID
      Log ID, categorizing the event
    • entryType

      public final int entryType
      Type of entry, usually one of Event.LT_* constants
    • text

      public String text
      Text of the event
    • err

      public Throwable err
      Error related to event
  • Constructor Details