Skip to content

Commit

Permalink
v4.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
herve91 committed Jul 15, 2024
1 parent 3d248e9 commit 09e7a62
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ public int executeUpdate() throws SQLException {
Savepoint savepoint = null;
int rowCount = 0;

if ( logger.isTraceEnabled() && !this.request.toLowerCase().startsWith("create") && !this.request.toLowerCase().startsWith("insert") && !this.request.toLowerCase().startsWith("update")) {
// CREATE, INSERT and update request are going through constructStatement that has got its own trace
if ( logger.isTraceEnabled() && !this.request.toLowerCase().startsWith("match") && !this.request.toLowerCase().startsWith("create") && !this.request.toLowerCase().startsWith("insert") && !this.request.toLowerCase().startsWith("update")) {
// MATCH, CREATE, INSERT and UPDATE request are going through constructStatement that has got its own trace
logger.trace(" --> "+this.request);
}

Expand Down

0 comments on commit 09e7a62

Please sign in to comment.