diff --git a/scripts/lib/util.sh b/scripts/lib/util.sh index 92f809e73..02f2f8bc3 100755 --- a/scripts/lib/util.sh +++ b/scripts/lib/util.sh @@ -599,11 +599,9 @@ openim::util::stop_services_with_name() { # An array to collect information about processes that were stopped. local stopped=() - echo "Stopping services with names: $*" # Iterate over each given service name. for server_name in "$@"; do # Use the `pgrep` command to find process IDs related to the given service name. - echo "Stopping services with name: $server_name" local pids=$(pgrep -f "$server_name") echo "Stopping services with name: $server_name "$pids @@ -624,7 +622,7 @@ openim::util::stop_services_with_name() { if [[ -n $pid ]]; then # Print the binary path for the PID binary_path=$(readlink -f /proc/$pid/exe) - echo "PID $pid corresponds to binary path: $binary_path" + openim::log::colorless "stop PID $pid path: $binary_path" # Try to stop the service by killing its process. if kill -15 $pid 2>/dev/null; then