public enum LoggerType extends java.lang.Enum<LoggerType>
Enum Constant and Description |
---|
COMMONS_LOGGING
Uses the Apache Jakarta Commons Logging logger.
|
INTERNAL_ASYNCHRONOUS
Uses an internal logger that logs information to the Flux database.
|
INTERNAL_SYNCHRONOUS
Uses an internal logger that logs information to the Flux database.
|
JDK
Uses the JDK 1.4+ logger.
|
LOG4J
Uses the Log4j logger.
|
NULL
Performs no logging.
|
STANDARD_ERROR
Logs stack traces and errors at the WARNING and SEVERE logging levels
only.
|
Modifier and Type | Method and Description |
---|---|
static LoggerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LoggerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggerType COMMONS_LOGGING
public static final LoggerType INTERNAL_ASYNCHRONOUS
Level.SEVERE
,
Level.WARNING
,
Configuration.ID_NAME
public static final LoggerType INTERNAL_SYNCHRONOUS
Level.SEVERE
,
Level.WARNING
,
Configuration.ID_NAME
public static final LoggerType JDK
public static final LoggerType LOG4J
public static final LoggerType NULL
public static final LoggerType STANDARD_ERROR
public static LoggerType[] values()
for (LoggerType c : LoggerType.values()) System.out.println(c);
public static LoggerType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null© 2000-2025 Flux Corporation. All rights reserved.