Package com.luciad.util
Class TLcdSystemLog
java.lang.Object
com.luciad.util.TLcdSystemLog
- All Implemented Interfaces:
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 -
Method Summary
Modifier and TypeMethodDescriptionvoidDeprecated.Writes the given message to the log, along with some information about the callingObject.voidDeprecated.Writes the given message to the log.voidDeprecated.Writes the given message to the log, along with some information about the callingObject.voidDeprecated.Writes the given message to the log.voidDeprecated.Writes the given message to the log, along with some information about the callingObject.voidDeprecated.Writes the given message to the log.protected static StringgetObjectMessage(Object aObject) Deprecated.Creates a reference to anObjectthat can be used in log messages.voidDeprecated.Writes the given message to the log, along with some information about the callingObject.voidDeprecated.Writes the given message to the log.voidDeprecated.Writes the given message to the log, along with some information about the callingObject.voidDeprecated.Writes the given message to the log.
-
Constructor Details
-
TLcdSystemLog
public TLcdSystemLog()Deprecated.
-
-
Method Details
-
out
Deprecated.Description copied from interface:ILcdLogListenerWrites the given message to the log.- Specified by:
outin interfaceILcdLogListener- Parameters:
aMessage- a general informative message.
-
out
Deprecated.Description copied from interface:ILcdLogListenerWrites the given message to the log, along with some information about the callingObject.- Specified by:
outin interfaceILcdLogListener- Parameters:
aObject- the calling object (`this').aMessage- a general informative message.
-
fail
Deprecated.Description copied from interface:ILcdLogListenerWrites the given message to the log.- Specified by:
failin interfaceILcdLogListener- Parameters:
aMessage- a warning message about a program failure.
-
fail
Deprecated.Description copied from interface:ILcdLogListenerWrites the given message to the log, along with some information about the callingObject.- Specified by:
failin interfaceILcdLogListener- Parameters:
aObject- the calling object (`this').aMessage- a warning message about a program failure.
-
warn
Deprecated.Description copied from interface:ILcdLogListenerWrites the given message to the log.- Specified by:
warnin interfaceILcdLogListener- Parameters:
aMessage- a warning message.
-
warn
Deprecated.Description copied from interface:ILcdLogListenerWrites the given message to the log, along with some information about the callingObject.- Specified by:
warnin interfaceILcdLogListener- Parameters:
aObject- the calling object (`this').aMessage- a warning message.
-
debug
Deprecated.Description copied from interface:ILcdLogListenerWrites the given message to the log.- Specified by:
debugin interfaceILcdLogListener- Parameters:
aMessage- a debugging message.
-
debug
Deprecated.Description copied from interface:ILcdLogListenerWrites the given message to the log, along with some information about the callingObject.- Specified by:
debugin interfaceILcdLogListener- Parameters:
aObject- the calling object (`this').aMessage- a debugging message.
-
event
Deprecated.Description copied from interface:ILcdLogListenerWrites the given message to the log.- Specified by:
eventin interfaceILcdLogListener- Parameters:
aMessage- a message about an event that has occurred.
-
event
Deprecated.Description copied from interface:ILcdLogListenerWrites the given message to the log, along with some information about the callingObject.- Specified by:
eventin interfaceILcdLogListener- Parameters:
aObject- the calling object (`this').aMessage- a message about an event that has occurred.
-
getObjectMessage
Deprecated.Creates a reference to anObjectthat can be used in log messages.- Parameters:
aObject- theObjectto refer to.- Returns:
- a
Stringthat can be used in the log messages to refer toaObject. In this implementation, the name of the class ofaObjectis returned (without package indication).
-