This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
dido:public:ra:xapend:xapend.b_stds:defact:orcle:java_logger_api [2021/08/06 13:06] murphy |
dido:public:ra:xapend:xapend.b_stds:defact:orcle:java_logger_api [2021/11/09 15:40] (current) char ↷ Links adapted because of a move operation |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ===== Oracle: Java logger API ===== | ===== Oracle: Java logger API ===== | ||
| - | [[dido:public:ra:xapend:xapend.b_stds:defact:orcle| return to Oracle de facto Standards ]] | + | [[dido:public:ra:xapend:xapend.b_stds:defact:orcle:start| return to Oracle de facto Standards ]] |
| : **Note**: The following is an excerpt from the official TTTTT site. It is provided here as a convenience and is not authoritative. Refer to the original document as the authoritative reference. | : **Note**: The following is an excerpt from the official TTTTT site. It is provided here as a convenience and is not authoritative. Refer to the original document as the authoritative reference. | ||
| Line 29: | Line 29: | ||
| * //**Logger** The main [[dido:public:ra:xapend:xapend.a_glossary:e:entity|entity]] on which applications make logging calls. A Logger object is used to log messages for a specific system or application component.// | * //**Logger** The main [[dido:public:ra:xapend:xapend.a_glossary:e:entity|entity]] on which applications make logging calls. A Logger object is used to log messages for a specific system or application component.// | ||
| * //**LogRecord** Used to pass logging requests between the logging framework and individual log handlers.// | * //**LogRecord** Used to pass logging requests between the logging framework and individual log handlers.// | ||
| - | * //**Handler** Exports LogRecord objects to a variety of destinations including memory, output streams, consoles, files, and sockets. A variety of Handler subclasses exist for this purpose. Additional Handlers may be developed by third parties and delivered on top of the core platform.// | + | * //**Handler** Exports LogRecord objects to a variety of destinations including memory, output streams, consoles, files, and sockets. A variety of Handler subclasses exist for this purpose. Additional Handlers may be developed by third parties and delivered on top of the core [[dido:public:ra:xapend:xapend.a_glossary:p:platform|platform]].// |
| * //**Level** Defines a set of standard logging levels that can be used to control logging output. Programs can be configured to output logging for some levels while ignoring output for others. | * //**Level** Defines a set of standard logging levels that can be used to control logging output. Programs can be configured to output logging for some levels while ignoring output for others. | ||
| Filter: Provides fine-grained control over what gets logged, beyond the control provided by log levels. The logging APIs support a general-purpose filter mechanism that allows application code to attach arbitrary filters to control logging output.// | Filter: Provides fine-grained control over what gets logged, beyond the control provided by log levels. The logging APIs support a general-purpose filter mechanism that allows application code to attach arbitrary filters to control logging output.// | ||