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
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Deprecated.Writes the given message to the log, along with some information about the callingObject
.void
Deprecated.Writes the given message to the log.void
Deprecated.Writes the given message to the log, along with some information about the callingObject
.void
Deprecated.Writes the given message to the log.void
Deprecated.Writes the given message to the log, along with some information about the callingObject
.void
Deprecated.Writes the given message to the log.protected static String
getObjectMessage
(Object aObject) Deprecated.Creates a reference to anObject
that can be used in log messages.void
Deprecated.Writes the given message to the log, along with some information about the callingObject
.void
Deprecated.Writes the given message to the log.void
Deprecated.Writes the given message to the log, along with some information about the callingObject
.void
Deprecated.Writes the given message to the log.
-
Constructor Details
-
TLcdSystemLog
public TLcdSystemLog()Deprecated.
-
-
Method Details
-
out
Deprecated.Description copied from interface:ILcdLogListener
Writes the given message to the log.- Specified by:
out
in interfaceILcdLogListener
- Parameters:
aMessage
- a general informative message.
-
out
Deprecated.Description copied from interface:ILcdLogListener
Writes the given message to the log, along with some information about the callingObject
.- Specified by:
out
in interfaceILcdLogListener
- Parameters:
aObject
- the calling object (`this
').aMessage
- a general informative message.
-
fail
Deprecated.Description copied from interface:ILcdLogListener
Writes the given message to the log.- Specified by:
fail
in interfaceILcdLogListener
- Parameters:
aMessage
- a warning message about a program failure.
-
fail
Deprecated.Description copied from interface:ILcdLogListener
Writes the given message to the log, along with some information about the callingObject
.- Specified by:
fail
in interfaceILcdLogListener
- Parameters:
aObject
- the calling object (`this
').aMessage
- a warning message about a program failure.
-
warn
Deprecated.Description copied from interface:ILcdLogListener
Writes the given message to the log.- Specified by:
warn
in interfaceILcdLogListener
- Parameters:
aMessage
- a warning message.
-
warn
Deprecated.Description copied from interface:ILcdLogListener
Writes the given message to the log, along with some information about the callingObject
.- Specified by:
warn
in interfaceILcdLogListener
- Parameters:
aObject
- the calling object (`this
').aMessage
- a warning message.
-
debug
Deprecated.Description copied from interface:ILcdLogListener
Writes the given message to the log.- Specified by:
debug
in interfaceILcdLogListener
- Parameters:
aMessage
- a debugging message.
-
debug
Deprecated.Description copied from interface:ILcdLogListener
Writes the given message to the log, along with some information about the callingObject
.- Specified by:
debug
in interfaceILcdLogListener
- Parameters:
aObject
- the calling object (`this
').aMessage
- a debugging message.
-
event
Deprecated.Description copied from interface:ILcdLogListener
Writes the given message to the log.- Specified by:
event
in interfaceILcdLogListener
- Parameters:
aMessage
- a message about an event that has occurred.
-
event
Deprecated.Description copied from interface:ILcdLogListener
Writes the given message to the log, along with some information about the callingObject
.- Specified by:
event
in interfaceILcdLogListener
- Parameters:
aObject
- the calling object (`this
').aMessage
- a message about an event that has occurred.
-
getObjectMessage
Deprecated.Creates a reference to anObject
that can be used in log messages.- Parameters:
aObject
- theObject
to refer to.- Returns:
- a
String
that can be used in the log messages to refer toaObject
. In this implementation, the name of the class ofaObject
is returned (without package indication).
-