Skip to content

Commit 6e5b82f

Browse files
committed
Fixes #94. Change log level in BaseExecutor.close() to WARN.
1 parent 58cc1a5 commit 6e5b82f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/ibatis/executor/BaseExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public void close(boolean forceRollback) {
7979
}
8080
} catch (SQLException e) {
8181
// Ignore. There's nothing that can be done at this point.
82-
log.debug("Unexpected exception on closing transaction. Cause: " + e);
82+
log.warn("Unexpected exception on closing transaction. Cause: " + e);
8383
} finally {
8484
transaction = null;
8585
deferredLoads = null;

0 commit comments

Comments
 (0)