From 588db52dfd23041a4fd4310601419f5936bfdd28 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sat, 25 Feb 2023 13:32:26 -0500 Subject: [PATCH] Added VERBOSE option for large logs --- utilities/debugBuilder.js | 1 + 1 file changed, 1 insertion(+) diff --git a/utilities/debugBuilder.js b/utilities/debugBuilder.js index 1c2a621..aa04a68 100644 --- a/utilities/debugBuilder.js +++ b/utilities/debugBuilder.js @@ -11,6 +11,7 @@ exports.DebugBuilder = class DebugBuilder { constructor(appName, fileName) { this.INFO = debug(`${appName}:${fileName}:INFO`); this.DEBUG = debug(`${appName}:${fileName}:DEBUG`); + this.VERBOSE = debug(`${appName}:${fileName}:VERBOSE`); this.WARN = debug(`${appName}:${fileName}:WARNING`); this.ERROR = debug(`${appName}:${fileName}:ERROR`); }