Class org.as2lib.env.log.logger.AbstractLogger

org.as2lib.core.BasicClass
   +--org.as2lib.env.log.logger.AbstractLogger

Description

AbstractLogger offers support for simple logger tasks.

Classes that extend this class are expected to / must implement the Logger interface.

Field Index

ALL, DEBUG, ERROR, FATAL, INFO, NONE, WARNING

Method Index

Inherited from BasicClass

toString()

Field Detail

ALL

static public ALL:LogLevel
All log messages get logged.

DEBUG

static public DEBUG:LogLevel
All log messages that are at a lower log level than debug get logged.

INFO

static public INFO:LogLevel
All log messages that are at a lower log level than info get logged.

WARNING

static public WARNING:LogLevel
All log messages that are at a lower log level than warning get logged.

ERROR

static public ERROR:LogLevel
All log messages that are at a lower log level than error get logged.

FATAL

static public FATAL:LogLevel
All log messages that are at a lower log level than fatal get logged.

NONE

static public NONE:LogLevel
No log messages get logged.