:: com :: sun :: star :: logging ::

unpublished constants group LogLevel
Description
specifies levels to distinguish between severities of logged events

Constants
OFF specifies that no messages are to be logged at all  
SEVERE denotes a serious failure to be logged 
WARNING denotes a potential problem to be logged 
INFO denotes an informational message to be logged 
CONFIG denotes a static configuration message to be logged 
FINE denotes basic tracing information to be logged 
FINER denotes more fine-grained tracing information to be logged 
FINEST denotes highly detailed tracing information to be logged 
ALL specifies that all messages should be logged  
Constants' Details
OFF
const long OFF = 0x7FFFFFFF;
Description
specifies that no messages are to be logged at all

This level can be set at an XLogger to completely prevent logging. You will usually not use it with a concrete log event.

SEVERE
const long SEVERE = 1000;
Description
denotes a serious failure to be logged
WARNING
const long WARNING = 900;
Description
denotes a potential problem to be logged
INFO
const long INFO = 800;
Description
denotes an informational message to be logged
CONFIG
const long CONFIG = 700;
Description
denotes a static configuration message to be logged
FINE
const long FINE = 500;
Description
denotes basic tracing information to be logged
FINER
const long FINER = 400;
Description
denotes more fine-grained tracing information to be logged
FINEST
const long FINEST = 300;
Description
denotes highly detailed tracing information to be logged
ALL
const long ALL = -0x80000000;
Description
specifies that all messages should be logged

This level can be set at an XLogger to enable logging of absolutely all events. You will usually not use it with a concrete log event.

Top of Page