Privet, Igor!
Sorry for eating up Your time.
I know this is not directly a sqlite4java issue.
The strange thing is that I define the log format in my custom
log4j.properties as:
log4j.appender.S.layout.ConversionPattern = %d{HH:mm:ss} %c{1} [%p] %m
%n
to the german date-time format and I can see the result:
23.08.2011 09:31:27 com.almworks.sqlite4java.Internal log
INFO: [sqlite] DB[1]: connection closed
So my log4j.properties is definitively processed!
But the log level is still INFO.
I even changed the system property:
System.out.println("PUTZFRAU SETS SQLITE4JAVA DEBUG TO 'FALSE'");
System.setProperty("sqlite4java.debug","false");
because this is used in Internal.loadLibraryX() - but didn't help.
The last alternative is to make a custom build and add a hardcoded
Level.WARN to it.