From ea33b13a87f9a77932cd33417363dbe9f8df2f5c Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sat, 11 Mar 2023 16:03:11 -0500 Subject: [PATCH] Temporarily add an exit after an error log to investigate --- utilities/debugBuilder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/debugBuilder.js b/utilities/debugBuilder.js index aa04a68..cd24590 100644 --- a/utilities/debugBuilder.js +++ b/utilities/debugBuilder.js @@ -13,6 +13,6 @@ exports.DebugBuilder = class DebugBuilder { this.DEBUG = debug(`${appName}:${fileName}:DEBUG`); this.VERBOSE = debug(`${appName}:${fileName}:VERBOSE`); this.WARN = debug(`${appName}:${fileName}:WARNING`); - this.ERROR = debug(`${appName}:${fileName}:ERROR`); + this.ERROR = debug(`${appName}:${fileName}:ERROR`).then(process.exit()); } } \ No newline at end of file