From 79686f15f7be03800fee93b9e24c6deb9e3dbdfe Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Fri, 8 Jan 2021 00:17:11 -0600 Subject: [PATCH] Add log level const --- scripts/shared/const.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/scripts/shared/const.js b/scripts/shared/const.js index d83dc41c..9151b410 100644 --- a/scripts/shared/const.js +++ b/scripts/shared/const.js @@ -12,4 +12,11 @@ const AG_LABEL_JOB = 1; const AG_LABEL_BUSINESS = 2; const AG_LABEL_HOUSE = 3; -const AG_LABEL_EXIT = 3; \ No newline at end of file +const AG_LABEL_EXIT = 3; + +// Log Levels +const LOG_NONE = 0; +const LOG_INFO = 1; +const LOG_WARN = 2; +const LOG_ERROR = 4; +const LOG_VERBOSE = 8; \ No newline at end of file