From 801dd5d4787494c9f8b78774270ef898ecc1209d Mon Sep 17 00:00:00 2001 From: Vito0912 <86927734+Vito0912@users.noreply.github.com> Date: Thu, 1 Feb 2024 19:07:25 +0100 Subject: [PATCH] Undo debug line --- lib/QueryRunner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/QueryRunner.js b/lib/QueryRunner.js index 83d96af..1421f6b 100644 --- a/lib/QueryRunner.js +++ b/lib/QueryRunner.js @@ -102,7 +102,7 @@ export default class QueryRunner { errors.push(e) } } - console.log(errors) + const err = new Error('Failed all ' + errors.length + ' attempts') for (const e of errors) { err.stack += '\n' + e.stack