From af1e5f52ca1cb810bcfb92d067a909c1ab81144b Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Mon, 22 Aug 2022 10:27:25 -0700 Subject: [PATCH] Removed debug code around running mongodump.exe. --- db.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/db.js b/db.js index c275cc6d..9352ab91 100644 --- a/db.js +++ b/db.js @@ -2687,9 +2687,6 @@ module.exports.CreateDB = function (parent, func) { child_process.exec(cmd, { cwd: backupPath }, function (error, stdout, stderr) { try { if ((error != null) && (error != '')) { - - console.log(error); - if (parent.platform == 'win32') { func(1, "Unable to find mongodump.exe, MongoDB database auto-backup will not be performed."); } else {