Skip to content

Commit 1668dd5

Browse files
committed
Use log level WARN for "Connection [{0}] not found in BusyList?"
1 parent 9035d03 commit 1668dd5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ebean-datasource/src/main/java/io/ebean/datasource/pool/PooledConnectionQueue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ void returnPooledConnection(PooledConnection c, boolean forceClose) {
150150
lock.lock();
151151
try {
152152
if (!busyList.remove(c)) {
153-
Log.error("Connection [{0}] not found in BusyList?", c);
153+
Log.warn("Connection [{0}] not found in BusyList?", c);
154154
}
155155
if (forceClose || c.shouldTrimOnReturn(lastResetTime, maxAgeMillis)) {
156156
c.closeConnectionFully(false);

0 commit comments

Comments
 (0)