From d837898adebd5937a997aa8f46071dc319a3f724 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Fri, 17 Apr 2026 15:17:14 +0200 Subject: [PATCH] allow to adjust the log level globally (fulltextsearch) Signed-off-by: Simon L. --- Containers/fulltextsearch/healthcheck.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Containers/fulltextsearch/healthcheck.sh b/Containers/fulltextsearch/healthcheck.sh index eca504c2..ba29f151 100644 --- a/Containers/fulltextsearch/healthcheck.sh +++ b/Containers/fulltextsearch/healthcheck.sh @@ -1,3 +1,7 @@ #!/bin/bash +if [ "$AIO_LOG_LEVEL" = 'debug' ]; then + set -x +fi + curl -fs "http://127.0.0.1:9200/_cluster/health?filter_path=status" | grep -qE '"status":"(green|yellow)"' || exit 1