From 71dbf98d486db1045e5d0b07dcd70a6630ea8ee2 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Wed, 29 Apr 2026 17:06:32 +0200 Subject: [PATCH] fix detail Signed-off-by: Simon L. --- Containers/redis/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/redis/start.sh b/Containers/redis/start.sh index d54266fd..d491337b 100644 --- a/Containers/redis/start.sh +++ b/Containers/redis/start.sh @@ -5,7 +5,7 @@ if [ "$AIO_LOG_LEVEL" = 'debug' ]; then fi # Redis only supports [debug, verbose, notice, warning, nothing] as log level -if [ "$AIO_LOG_LEVEL" = "warn" ] [ "$AIO_LOG_LEVEL" = "error" ]; then +if [ "$AIO_LOG_LEVEL" = "warn" ] || [ "$AIO_LOG_LEVEL" = "error" ]; then REDIS_LOG_LEVEL="warning" else REDIS_LOG_LEVEL="$AIO_LOG_LEVEL"