public static enum OCastLog.Level
Represents the OCast log level.
Enum Constant and Description |
---|
ALL
Indicates that the log message is always displayed.
|
DEBUG
Indicates that the log is a debug message.
|
ERROR
Indicates that the log is an error message.
|
INFO
Indicates that the log is an informational message.
|
OFF
Indicates that the log message will not be displayed.
|
public static OCastLog.Level OFF
Indicates that the log message will not be displayed.
This level corresponds to java.util.logging.Level.OFF.
public static OCastLog.Level ERROR
Indicates that the log is an error message.
This level corresponds to java.util.logging.Level.SEVERE.
public static OCastLog.Level INFO
Indicates that the log is an informational message.
This level corresponds to java.util.logging.Level.INFO.
public static OCastLog.Level DEBUG
Indicates that the log is a debug message.
This level corresponds to java.util.logging.Level.FINEST.
public static OCastLog.Level ALL
Indicates that the log message is always displayed.
This level corresponds to java.util.logging.Level.ALL.