Skip to content

Commit 237cabb

Browse files
committed
Reverted the info message to 'debug' level
1 parent 41bf65d commit 237cabb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A simple connection pool on top of PostgresNIO.
99

1010
```swift
1111
dependencies: [
12-
.package(url: "https://github.com/Outdooractive/PostgresConnectionPool.git", from: "0.3.1"),
12+
.package(url: "https://github.com/Outdooractive/PostgresConnectionPool.git", from: "0.3.2"),
1313
],
1414
targets: [
1515
.target(name: "MyTarget", dependencies: [

Sources/PostgresConnectionPool/PostgresConnectionPool.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public actor PostgresConnectionPool {
193193
// TODO: Kill self if too many stuck connections
194194

195195
let usageCounter = connections.reduce(0) { $0 + $1.usageCounter }
196-
logger.info("[\(poolName)] \(connections.count) connections (\(available.count) available, \(usageCounter) queries), \(continuations.count) continuations left")
196+
logger.debug("[\(poolName)] \(connections.count) connections (\(available.count) available, \(usageCounter) queries), \(continuations.count) continuations left")
197197

198198
// Check for waiting continuations and open a new connection if possible
199199
if connections.count < poolSize,

0 commit comments

Comments
 (0)