Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
Co-authored-by: Philipp Dallig <philipp.dallig@gmail.com>
  • Loading branch information
kevinjmh and Reamer authored Mar 14, 2024
1 parent 7aa2fc6 commit 2f1a495
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -800,8 +800,7 @@ private InterpreterResult executeSql(String sql,
// so we need to trim it first in this case.
sqlToExecute = sqlToExecute.trim();
}
LOGGER.info(String.format("[%s|%s|%s] Execute sql: %s",
user, noteId, paragraphId, sqlToExecute));
LOGGER.info("[{}|{}|{}] Execute sql: {}", user, noteId, paragraphId, sqlToExecute);
statement = connection.createStatement();

// fetch n+1 rows in order to indicate there's more rows available (for large selects)
Expand Down

0 comments on commit 2f1a495

Please sign in to comment.