All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.lgeds.jdf.Logger

java.lang.Object
   |
   +----com.lgeds.jdf.Logger

public final class Logger
extends Object

Variable Index

 o dbwrap
The special log stream for DBWrapper.
 o debug
The "debug & tracing" log stream.
 o err
The "critical business error" log stream.
 o info
The "business infomation" log stream.
 o sys
The "critical system level error" log stream.
 o warn
The "business warnning" log stream.

Variables

 o sys
 public static final LoggerWriter sys
The "critical system level error" log stream. This stream is already open and ready to accept output data.

Typically this stream corresponds to display output or another output destination specified by the host environment or user. By convention, this output stream is used to display error messages or other information that should come to the immediate attention of a user even if the principal output stream, the value of the variable out, has been redirected to a file or other destination that is typically not continuously monitored.

 o err
 public static final LoggerWriter err
The "critical business error" log stream. This stream is already open and ready to accept output data.

Typically this stream corresponds to display output or another output destination specified by the host environment or user. By convention, this output stream is used to display error messages or other information that should come to the immediate attention of a user even if the principal output stream, the value of the variable out, has been redirected to a file or other destination that is typically not continuously monitored.

 o warn
 public static final LoggerWriter warn
The "business warnning" log stream. This stream is already open and ready to accept output data. Typically this stream corresponds to display output or another output destination specified by the host environment or user.

For simple stand-alone Java applications, a typical way to write a line of output data is:

See the println methods in class LoggerWriter.

See Also:
println, println, println, println, println, println, println, println, println, println
 o info
 public static final LoggerWriter info
The "business infomation" log stream. This stream is already open and ready to accept output data. Typically this stream corresponds to display output or another output destination specified by the host environment or user.

For simple stand-alone Java applications, a typical way to write a line of output data is:

See the println methods in class LoggerWriter.

See Also:
println, println, println, println, println, println, println, println, println, println
 o debug
 public static final LoggerWriter debug
The "debug & tracing" log stream. This stream is already open and ready to accept output data.

 o dbwrap
 public static final LoggerWriter dbwrap
The special log stream for DBWrapper. This stream is already open and ready to accept output data.


All Packages  Class Hierarchy  This Package  Previous  Next  Index