We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fcc9f8 commit b2d1c0eCopy full SHA for b2d1c0e
src/MySqlConnector/Core/ConnectionPool.cs
@@ -29,7 +29,7 @@ public async ValueTask<ServerSession> GetSessionAsync(MySqlConnection connection
29
// on the lock in RecoverLeakedSessions in high-concurrency situations
30
if (m_sessionSemaphore.CurrentCount == 0 && unchecked(((uint) Environment.TickCount) - m_lastRecoveryTime) >= 1000u)
31
{
32
- Log.Warn("Pool{0} is empty; recovering leaked sessions", m_logArguments);
+ Log.Info("Pool{0} is empty; recovering leaked sessions", m_logArguments);
33
RecoverLeakedSessions();
34
}
35
0 commit comments