Temporarily add an exit after an error log to investigate
This commit is contained in:
@@ -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());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user