开发者

hsqldb internal event log configuration

开发者 https://www.devze.com 2023-01-27 03:27 出处:网络
How do I configure internal event monitoring in hsqldb? When I run my Java application, I get the following warnings:

How do I configure internal event monitoring in hsqldb? When I run my Java application, I get the following warnings:

log4j:WARN No appenders could be found for logger (HSQLDB2C7984E18B.org.hsqldb.persist.Logger).
log4j:WARN Please initialize the log4j system properly.

The documentation tells me log4j is not the only option, but it doesn't tell me how to configure my application. Can anyone point me to this documentation? Remember, I don't want开发者_如何学运维 to use log4j for hsqldb.

It bears mentioning that a 3rd-party jar I'm referencing requires log4j. Does hsqldb automatically detect that log4j is present and then attempt to use it? Or am I missing something fundamental about how logging works?


Check out this link. It says

The logging facility hands off to Log4j if Log4j is found in the classpath, and otherwise will hand off to java.util.logging.


The consequence of what the message indicates is that no logging for HSQLDB will take place because no appenders were found.

If you wish to suppress the message, add a line like the one below to the log4j.properties file:

log4j.logger.HSQLDB2C7984E18B.org.hsqldb.persist.Logger=FATAL

This will log only FATAL events, which wouldn't happen in normal operation.

You also state that you don't want to use log4j for HSQLDB. Software components that can use log4j leave the logging configuration (including level and where to log, etc.) to the log4j properties settings, which you can edit and configure.

In this case, the logger name is based on the "unique" database name which is initially autogenerated, but which you can change in HSQLDB.


Because as YWE noted hsqldb uses log4j by default if it is found in the classpath, I needed to figure out how to override the log4j.properties found in the 3rd-party library. This I managed to do as follows:

  1. Copy the existing log4j.properties to my project, and add the following line at the beginning:

    log4j.rootLogger=WARN, CONSOLE
    
  2. Add the following VM Arguments:

    -Dlog4j.log4j.defaultInitOverride=true
    -Dlog4j.configuration=C:/full/path/to/my/log4j.properties
    
  3. Make sure this line of code runs before anyone (e.g. hsqldb) attempts to use log4j:

    org.apache.log4j.PropertyConfigurator.configure("log4j.properties");
    
0

精彩评论

暂无评论...
验证码 换一张
取 消