From d8e20f7316290e286bd52933496737c6a7be0e14 Mon Sep 17 00:00:00 2001 From: Nikhil Nayak Date: Wed, 9 Jul 2025 11:56:30 +0530 Subject: [PATCH] add log --- scripts/copy-db-files.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/copy-db-files.js b/scripts/copy-db-files.js index 8d444e9d5..31bf6c310 100644 --- a/scripts/copy-db-files.js +++ b/scripts/copy-db-files.js @@ -18,6 +18,7 @@ function getDatabaseType(url = process.env.DATABASE_URL) { const databaseType = getDatabaseType(); if (!databaseType || !['mysql', 'postgresql'].includes(databaseType)) { + console.log(`---- DATABASE_TYPE -----> - ${databaseType}`); throw new Error('Missing or invalid database'); }