We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 415758e commit f541254Copy full SHA for f541254
src/main/java/io/sqlman/AbstractStatement.java
@@ -19,7 +19,7 @@ public abstract class AbstractStatement implements SqlStatement {
19
@Override
20
public int execute(Connection connection) throws SQLException {
21
String sql = statement();
22
- logger.debug(sql);
+ logger.info(sql);
23
PreparedStatement statement = connection.prepareStatement(sql);
24
statement.execute();
25
return statement.getUpdateCount();
0 commit comments