Temporarily add an exit after an error log to investigate

This commit is contained in:
Logan Cusano
2023-03-11 16:03:11 -05:00
parent 5bf0ae661e
commit ea33b13a87

View File

@@ -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());
}
}