Content for OpenOffice.org version 3.3.
:: com :: sun :: star :: logging ::
|
| unpublished |
constants group LogLevel |
|
|
- Usage Restrictions
- not published
- Description
- specifies levels to distinguish between severities of logged events
- Since
- OOo 2.3
- See also
- XLogger
|
| 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
Copyright © 1995, 2010, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.