Available in versions: Dev (3.18) | Latest (3.17) | 3.16 | 3.15 | 3.14 | 3.13 | 3.12 | 3.11 | 3.10 | 3.9
Logging
Applies to ✅ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
This optional top level configuration element simply allows for overriding the log level of anything that has been specified by the runtime, e.g. in log4j or slf4j and is helpful for per-code-generation log configuration. For example, in order to mute everything that is less than WARN level, write:
<configuration xmlns="http://www.jooq.org/xsd/jooq-codegen-3.17.0.xsd"> <logging>WARN</logging> </configuration>
new org.jooq.meta.jaxb.Configuration() .withLogging(Logging.WARN)
myConfigurationName(sourceSets.main) { logging = 'WARN' }
Available log levels are
-
TRACE
-
DEBUG
-
INFO
-
WARN
-
ERROR
-
FATAL
Feedback
Do you have any feedback about this page? We'd love to hear it!