From b82c53e290609a6aa9a9a2ed40d4b5103877b1e1 Mon Sep 17 00:00:00 2001 From: Mike Roelens Date: Mon, 6 Jan 2025 12:29:36 -0500 Subject: [PATCH] fix: remove console log --- packages/slonik/src/factories/createConnectionPool.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/slonik/src/factories/createConnectionPool.ts b/packages/slonik/src/factories/createConnectionPool.ts index 524697a0..063ae48b 100644 --- a/packages/slonik/src/factories/createConnectionPool.ts +++ b/packages/slonik/src/factories/createConnectionPool.ts @@ -174,8 +174,6 @@ export const createConnectionPool = ({ connection.removeListener('release', onRelease); connection.removeListener('destroy', onDestroy); - console.error('local destory', { connections }); - connections.splice(connections.indexOf(connection), 1); const waitingClient = waitingClients.shift();