skip to main content
Troubleshooting : Using Java logging : Logging Components
  

Try DataDirect Drivers Now

Logging Components

The driver uses the Java Logging API to configure the loggers (individual logging components) used by the driver. The Java Logging API is built into the JVM.
The Java Logging API allows applications or components to define one or more named loggers. Messages written to the loggers can be given different levels of importance. For example, errors that occur in the driver can be written to a logger at the CONFIG level, while progress or flow information may be written to a logger at the FINE or FINER level. Each logger used by the driver can be configured independently. The configuration for a logger includes what level of log messages are written, the location to which they are written, and the format of the log message.
The Java Logging API defines the following levels:
*SEVERE
*WARNING
*INFO
*CONFIG
*FINE
*FINER
*FINEST
Note: Log messages logged by the driver only use the CONFIG, FINE, FINER, and FINEST logging levels.
Setting the log threshold of a logger to a particular level causes the logger to write log messages of that level and higher to the log. For example, if the threshold is set to FINE, the logger writes messages of levels FINE, CONFIG, INFO, WARNING, and SEVERE to its log. Messages of level FINER or FINEST are not written to the log.
The driver exposes loggers for the following functional areas:
*JDBC API
*SQL Engine
* JDBC API logger
* SQL Engine logger