From 8e1a44f40762d5e3727b30533aa93bf47cb84b5b Mon Sep 17 00:00:00 2001 From: Unique-Divine Date: Sun, 17 Dec 2023 10:57:09 -0600 Subject: [PATCH] suggestion from AI --- contrib/bashlib.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/bashlib.sh b/contrib/bashlib.sh index 38519b942..2279cc456 100644 --- a/contrib/bashlib.sh +++ b/contrib/bashlib.sh @@ -38,13 +38,13 @@ log_error() { } log_success() { - echo "${COLOR_GREEN}✅ Success:${COLOR_RESET}" "$@" + echo "${COLOR_GREEN}✅ SUCCESS:${COLOR_RESET}" "$@" } # log_warning: WARNING messages represent non-critical issues that might not # require immediate action but should be noted as points of concern or failure. log_warning() { - echo "${COLOR_YELLOW}INFO${COLOR_RESET}" "$@" >&2 + echo "${COLOR_YELLOW}WARNING${COLOR_RESET}" "$@" >&2 } log_info() {