We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SqlLoggerListener
The SqlLoggerListener is a utility class that shouldn't be part of the public extension.
The text was updated successfully, but these errors were encountered:
Side effect of this class and its usage during configuration of jooq renders the activation of jooq query log cumbersome and unexpected.
quarkus.log.category."org.jooq".level=DEBUG quarkus.log.category."io.quarkiverse.jooq.sql".min-level=TRACE quarkus.log.category."io.quarkiverse.jooq.sql".level=TRACE
quarkus-jooq/runtime/src/main/java/io/quarkiverse/jooq/runtime/JooqCustomContext.java
Line 31 in ba23c96
Moreover it then triggers duplicated lines in log
2023-10-31 14:52:15,333 DEBUG [org.joo.too.LoggerListener] (main) Executing query : select "actor"."first_name", "actor"."last_name", ... 2023-10-31 14:52:15,337 DEBUG [org.joo.too.LoggerListener] (main) -> with bind values : select "actor"."first_name", "actor"."last_name", ... 2023-10-31 14:52:15,338 DEBUG [io.qua.joo.sql.SqlLoggerListener] (main) <<SQL>> : select "actor"."first_name", "actor"."last_name" ...
https://www.jooq.org/doc/latest/manual/sql-execution/logging/
Sorry, something went wrong.
No branches or pull requests
The
SqlLoggerListener
is a utility class that shouldn't be part of the public extension.The text was updated successfully, but these errors were encountered: