From a1d5bdfaa5a28eebba26b6ffce34bc5c37fbe902 Mon Sep 17 00:00:00 2001 From: skiffer-git <44203734@qq.com> Date: Thu, 21 Mar 2024 14:32:09 +0800 Subject: [PATCH] Optimizing scripts --- scripts/lib/logging.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lib/logging.sh b/scripts/lib/logging.sh index 6468faf26..5617b8baf 100755 --- a/scripts/lib/logging.sh +++ b/scripts/lib/logging.sh @@ -216,7 +216,7 @@ openim::log::status() { shift for message; do local reset_color='\033[0m' - echo_log -e "${COLOR_GREEN} ${message} ==> ${COLOR_GREEN}$@${reset_color}" + echo_log -e "${COLOR_BLUE} ${message} ==> ${COLOR_BLUE}$@${reset_color}" done } @@ -228,7 +228,7 @@ openim::log::success() { fi local timestamp=$(date +"%m%d %H:%M:%S") local reset_color='\033[0m' - echo_log -e "${COLOR_BLUE}[success ${timestamp}]${COLOR_SUFFIX}==> ${COLOR_BLUE}$@${reset_color}" + echo_log -e "${COLOR_GREEN}[success ${timestamp}]${COLOR_SUFFIX}==> ${COLOR_GREEN}$@${reset_color}" }