Removed logging

This commit is contained in:
Linus J 2021-10-03 22:50:12 +02:00
parent 189c351038
commit b1572c93a1

View File

@ -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});
};