From 4682355bfe6f5a208346986f7cc570d4f77431f6 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Wed, 29 Apr 2026 16:57:46 +0200 Subject: [PATCH] redis: fix log level Signed-off-by: Simon L. --- Containers/redis/start.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Containers/redis/start.sh b/Containers/redis/start.sh index 262cbb90..d54266fd 100644 --- a/Containers/redis/start.sh +++ b/Containers/redis/start.sh @@ -4,7 +4,8 @@ if [ "$AIO_LOG_LEVEL" = 'debug' ]; then set -x fi -if [ "$AIO_LOG_LEVEL" = "warn" ]; then +# Redis only supports [debug, verbose, notice, warning, nothing] as log level +if [ "$AIO_LOG_LEVEL" = "warn" ] [ "$AIO_LOG_LEVEL" = "error" ]; then REDIS_LOG_LEVEL="warning" else REDIS_LOG_LEVEL="$AIO_LOG_LEVEL"