Added VERBOSE option for large logs

This commit is contained in:
Logan Cusano
2023-02-25 13:32:26 -05:00
parent c96f7983fb
commit 588db52dfd

View File

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