From b1572c93a1cece0b4ae7a04d5c02ae145699b8d3 Mon Sep 17 00:00:00 2001 From: Linus J Date: Sun, 3 Oct 2021 22:50:12 +0200 Subject: [PATCH] Removed logging --- lib/document_stores/postgres.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/document_stores/postgres.js b/lib/document_stores/postgres.js index 682ee1e..e5e5fc6 100644 --- a/lib/document_stores/postgres.js +++ b/lib/document_stores/postgres.js @@ -10,7 +10,6 @@ var PostgresDocumentStore = function (options) { this.expireJS = parseInt(options.expire); const connectionString = process.env.DATABASE_URL || options.connectionUrl; - console.log(connectionString) this.pool = new Pool({connectionString}); };