From df87f9405e8a5ecad658bb15315d40905b6f1835 Mon Sep 17 00:00:00 2001 From: skiffer-git <44203734@qq.com> Date: Thu, 22 Feb 2024 22:38:09 +0800 Subject: [PATCH] log --- scripts/lib/util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/util.sh b/scripts/lib/util.sh index 2cd3cc432..023edc344 100755 --- a/scripts/lib/util.sh +++ b/scripts/lib/util.sh @@ -2878,7 +2878,7 @@ function openim::util::check_process_names_for_stop() { NUM_PROCESSES=$(echo "$PIDS" | wc -l | xargs) if [ "$NUM_PROCESSES" -gt 0 ]; then all_stopped=false - openim::log::error "Found $NUM_PROCESSES processes for ${service}" + echo "Found $NUM_PROCESSES processes for ${service}" for PID in $PIDS; do if [[ "$OSTYPE" == "linux-gnu"* ]]; then echo -e "\033[31m$(ps -p $PID -o pid,cmd)\033[0m"