From a2de9d42eb6a0a6d9b88b3bd28f986fee2154f0b Mon Sep 17 00:00:00 2001 From: skiffer-git <44203734@qq.com> Date: Thu, 7 Mar 2024 15:09:55 +0800 Subject: [PATCH] Optimizing Docker Log Output Detection --- scripts/check-all.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/check-all.sh b/scripts/check-all.sh index 2788069a1..4850357b4 100755 --- a/scripts/check-all.sh +++ b/scripts/check-all.sh @@ -27,10 +27,11 @@ OPENIM_ROOT=$(dirname "${BASH_SOURCE[0]}")/.. source "${OPENIM_ROOT}/scripts/install/common.sh" if openim::util::is_running_in_container; then - exec > ${DOCKER_LOG_FILE} 2>>&1 + exec >> ${DOCKER_LOG_FILE} 2>&1 fi + OPENIM_VERBOSE=4 openim::log::info "\n# Begin to check all openim service"