Skip to content

Commit b2d1c0e

Browse files
committed
Reduce unnecessary Warning to Info level.
1 parent 4fcc9f8 commit b2d1c0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MySqlConnector/Core/ConnectionPool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public async ValueTask<ServerSession> GetSessionAsync(MySqlConnection connection
2929
// on the lock in RecoverLeakedSessions in high-concurrency situations
3030
if (m_sessionSemaphore.CurrentCount == 0 && unchecked(((uint) Environment.TickCount) - m_lastRecoveryTime) >= 1000u)
3131
{
32-
Log.Warn("Pool{0} is empty; recovering leaked sessions", m_logArguments);
32+
Log.Info("Pool{0} is empty; recovering leaked sessions", m_logArguments);
3333
RecoverLeakedSessions();
3434
}
3535

0 commit comments

Comments
 (0)