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 Link icon

    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 Link icon

    • out Link icon

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

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

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

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

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

      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 Link icon

      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 Link icon

      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 Link icon

      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 Link icon

      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.