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() {