add log level as a cli arg

This commit is contained in:
Alec
2021-11-17 00:59:11 -05:00
parent b6edc941fc
commit b85ee7dcfc
6 changed files with 57 additions and 20 deletions

View File

@@ -24,6 +24,13 @@ const globals = {
ENVIRONMENT: {
LOCAL: "local",
PRODUCTION: "production"
},
LOG_LEVEL: {
INFO: "info",
DEBUG: "debug",
ERROR: "error",
WARN: "warn",
TRACE: "trace"
}
};