Skip to content

Commit

Permalink
suggestion from AI
Browse files Browse the repository at this point in the history
  • Loading branch information
Unique-Divine committed Dec 17, 2023
1 parent ea35c9b commit 8e1a44f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/bashlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 8e1a44f

Please sign in to comment.