From e100661f6e586cfe334064709b61f3d2e9be79af Mon Sep 17 00:00:00 2001 From: skiffer-git <44203734@qq.com> Date: Thu, 21 Mar 2024 15:11:14 +0800 Subject: [PATCH] Optimizing scripts --- scripts/start-all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/start-all.sh b/scripts/start-all.sh index 6f5ec6857..2c288d9c5 100755 --- a/scripts/start-all.sh +++ b/scripts/start-all.sh @@ -42,7 +42,7 @@ function execute_start_scripts() { # Check if the script file exists and is executable. if [[ -x "$script_path" ]]; then - openim::log::print_blue "Starting script: ${script_path##*/}" # Log the script name. + openim::log::colorless "Starting script: ${script_path##*/}" # Log the script name. # Execute the script with the constructed argument. result=$("$script_path" "$arg") @@ -83,7 +83,7 @@ fi # TODO Prelaunch tools, simple for now, can abstract functions later TOOLS_START_SCRIPTS_PATH=${START_SCRIPTS_PATH}/openim-tools.sh -openim::log::status "Start the preprocessing tools" +openim::log::status "Start the preprocessing tools:" if ! ${TOOLS_START_SCRIPTS_PATH} openim::tools::pre-start; then