Interface ILcdLogListener

All Known Implementing Classes:
TLcdOutputFrame, TLcdSystemLog

public interface ILcdLogListener
Deprecated.
- new code should use the standard Java logging.
This interface is intended for internal use inside LuciadLightspeed.

An ILcdLogListener can write out log messages to inform the user. The caller can send five types of messages: out ,fail, warn, debug, and event.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    debug(Object aObject, String aMessage)
    Deprecated.
    Writes the given message to the log, along with some information about the calling Object.
    void
    debug(String aMessage)
    Deprecated.
    Writes the given message to the log.
    void
    event(Object aObject, String aMessage)
    Deprecated.
    Writes the given message to the log, along with some information about the calling Object.
    void
    event(String aMessage)
    Deprecated.
    Writes the given message to the log.
    void
    fail(Object aObject, String aMessage)
    Deprecated.
    Writes the given message to the log, along with some information about the calling Object.
    void
    fail(String aMessage)
    Deprecated.
    Writes the given message to the log.
    void
    out(Object aObject, String aMessage)
    Deprecated.
    Writes the given message to the log, along with some information about the calling Object.
    void
    out(String aMessage)
    Deprecated.
    Writes the given message to the log.
    void
    warn(Object aObject, String aMessage)
    Deprecated.
    Writes the given message to the log, along with some information about the calling Object.
    void
    warn(String aMessage)
    Deprecated.
    Writes the given message to the log.
  • Method Details

    • out

      void out(String aMessage)
      Deprecated.
      Writes the given message to the log.
      Parameters:
      aMessage - a general informative message.
    • fail

      void fail(String aMessage)
      Deprecated.
      Writes the given message to the log.
      Parameters:
      aMessage - a warning message about a program failure.
    • warn

      void warn(String aMessage)
      Deprecated.
      Writes the given message to the log.
      Parameters:
      aMessage - a warning message.
    • debug

      void debug(String aMessage)
      Deprecated.
      Writes the given message to the log.
      Parameters:
      aMessage - a debugging message.
    • event

      void event(String aMessage)
      Deprecated.
      Writes the given message to the log.
      Parameters:
      aMessage - a message about an event that has occurred.
    • out

      void out(Object aObject, String aMessage)
      Deprecated.
      Writes the given message to the log, along with some information about the calling Object.
      Parameters:
      aObject - the calling object (`this').
      aMessage - a general informative message.
    • fail

      void fail(Object aObject, String aMessage)
      Deprecated.
      Writes the given message to the log, along with some information about the calling Object.
      Parameters:
      aObject - the calling object (`this').
      aMessage - a warning message about a program failure.
    • warn

      void warn(Object aObject, String aMessage)
      Deprecated.
      Writes the given message to the log, along with some information about the calling Object.
      Parameters:
      aObject - the calling object (`this').
      aMessage - a warning message.
    • debug

      void debug(Object aObject, String aMessage)
      Deprecated.
      Writes the given message to the log, along with some information about the calling Object.
      Parameters:
      aObject - the calling object (`this').
      aMessage - a debugging message.
    • event

      void event(Object aObject, String aMessage)
      Deprecated.
      Writes the given message to the log, along with some information about the calling Object.
      Parameters:
      aObject - the calling object (`this').
      aMessage - a message about an event that has occurred.