Hi Scott,
I know we are struk with jdk logging :(.
Wondering if specified jvm arg
-Djava.util.logging.config.file=<path toyourlogging file>\logging.properties
Also i set
org.hibernate.SQL.level = FINE
and you have to chage the logging level for the logger you are using
eg
java.util.logging.ConsoleHandler.level = FINEST ( changed it to finest from info ( default)) I think you missed this
Also u might want to set
# Default global logging level.
# This specifies which kinds of events are logged across
# all loggers. For any given facility this global level
# can be overriden by a facility specific level
# Note that the ConsoleHandler also has a separate level
# setting to limit messages printed to the console.
.level= FINEST
this works fine for me .
Also hibernate uses commons logging you might want to refer to
http://jakarta.apache.org/commons/logging/apidocs/org/apache/commons/logging/impl/Jdk14Logger.html
for log level mapping between the two. ttyl
--Surya[code][/code]