Package ch.javasoft.util.logging

The util.logging package contains classes related to logging; they are using and extending java logging.

See:
          Description

Class Summary
AbstractStandardHandler Standard err/out handlers, somewhat like ConsoleHandler, but for both streams.
AbstractStandardHandler.StandardStream A print stream which never closes the underlying stream
AutoFlushStreamHandler The AutoFlushStreamHandler adds a flush to every call to AutoFlushStreamHandler.publish(LogRecord).
LevelFilter A filter for log messages based on the log level.
LogFormatter The LogFormatter formats log statements with the help of a MessageFormat.
LogFragmenter The LogFragmenter allows fragmented logging of a log record, which might for instance result as a single line in the log file.
Loggers Loggers is a class with some static convenience methods to use java logging.
LogPrintStream The LogPrintStream is a PrintStream based on a LogWriter to support the log formatting functionality provided by this package.
LogPrintWriter The LogPrintWriter is a PrintWriter based on a LogWriter to support the log formatting functionality provided by this package.
LogWriter The LogWriter is a special writer to support the log formatting functionality provided by this package.
StandardErrHandler Standard err handler, somewhat like ConsoleHandler
StandardOutHandler Standard out handler, somewhat like ConsoleHandler, but for output stream.
 

Enum Summary
LevelFilter.Type The filter type, somewhat like a comparison operator for the threshold level and the log record's log level
LogFormatter.LogParameter Constants for interplay with LogFragmenter
SystemProperties Constants for system property names related to logging configuration.
 

Package ch.javasoft.util.logging Description

The util.logging package contains classes related to logging; they are using and extending java logging.