Class TLcdSystemLog

java.lang.Object
com.luciad.util.TLcdSystemLog
All Implemented Interfaces:
ILcdLogListener

public class TLcdSystemLog extends Object implements ILcdLogListener
Deprecated.
new code should use the standard Java logging
This class is intended for internal use inside LuciadLightspeed.

A TLcdSystemLog is an ILcdLogListener that writes all log messages either to System.out (out, debug, event) or to System.err (fail, warn).

  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated.
     
  • 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.
    protected static String
    Deprecated.
    Creates a reference to an Object that can be used in log messages.
    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.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • TLcdSystemLog

      public TLcdSystemLog()
      Deprecated.
  • Method Details

    • out

      public void out(String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log.
      Specified by:
      out in interface ILcdLogListener
      Parameters:
      aMessage - a general informative message.
    • out

      public void out(Object aObject, String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log, along with some information about the calling Object.
      Specified by:
      out in interface ILcdLogListener
      Parameters:
      aObject - the calling object (`this').
      aMessage - a general informative message.
    • fail

      public void fail(String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log.
      Specified by:
      fail in interface ILcdLogListener
      Parameters:
      aMessage - a warning message about a program failure.
    • fail

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

      public void warn(String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log.
      Specified by:
      warn in interface ILcdLogListener
      Parameters:
      aMessage - a warning message.
    • warn

      public void warn(Object aObject, String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log, along with some information about the calling Object.
      Specified by:
      warn in interface ILcdLogListener
      Parameters:
      aObject - the calling object (`this').
      aMessage - a warning message.
    • debug

      public void debug(String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log.
      Specified by:
      debug in interface ILcdLogListener
      Parameters:
      aMessage - a debugging message.
    • debug

      public void debug(Object aObject, String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log, along with some information about the calling Object.
      Specified by:
      debug in interface ILcdLogListener
      Parameters:
      aObject - the calling object (`this').
      aMessage - a debugging message.
    • event

      public void event(String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log.
      Specified by:
      event in interface ILcdLogListener
      Parameters:
      aMessage - a message about an event that has occurred.
    • event

      public void event(Object aObject, String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log, along with some information about the calling Object.
      Specified by:
      event in interface ILcdLogListener
      Parameters:
      aObject - the calling object (`this').
      aMessage - a message about an event that has occurred.
    • getObjectMessage

      protected static String getObjectMessage(Object aObject)
      Deprecated.
      Creates a reference to an Object that can be used in log messages.
      Parameters:
      aObject - the Object to refer to.
      Returns:
      a String that can be used in the log messages to refer to aObject. In this implementation, the name of the class of aObject is returned (without package indication).