Skip to content

Commit b38da71

Browse files
committed
1 parent d8246ab commit b38da71

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/apache/ibatis/transaction/jdbc/JdbcTransaction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ protected void resetAutoCommit() {
126126

127127
protected void openConnection() throws SQLException {
128128
if (log.isDebugEnabled()) {
129-
log.debug("Openning JDBC Connection");
129+
log.debug("Opening JDBC Connection");
130130
}
131131
connection = dataSource.getConnection();
132132
if (level != null) {

src/main/java/org/apache/ibatis/transaction/managed/ManagedTransaction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public void close() throws SQLException {
7979

8080
protected void openConnection() throws SQLException {
8181
if (log.isDebugEnabled()) {
82-
log.debug("Openning JDBC Connection");
82+
log.debug("Opening JDBC Connection");
8383
}
8484
this.connection = this.dataSource.getConnection();
8585
if (this.level != null) {

0 commit comments

Comments
 (0)