diff --git a/src/helpers/common.js b/src/helpers/common.js index 94c5e5e..f2cf555 100644 --- a/src/helpers/common.js +++ b/src/helpers/common.js @@ -86,7 +86,7 @@ exports.getPrismaClient = function getPrismaClient() { logger.debug("getPrismaClient: process.env.DATABASE = ", process.env.DATABASE); prisma = new PrismaClient({ // Optional: Enable logging - log: ['query', 'info', 'warn', 'error'], + //log: ['query', 'info', 'warn', 'error'], datasources: { db: { url: process.env.DATABASE } }, }); }