From cdc617d0b7aecb081f36ef77d6aba856042d3ba7 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Wed, 29 Apr 2026 17:31:35 +0200 Subject: [PATCH] another fix for redis Signed-off-by: Simon L. --- Containers/redis/start.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Containers/redis/start.sh b/Containers/redis/start.sh index d491337b..ccc3b9bb 100644 --- a/Containers/redis/start.sh +++ b/Containers/redis/start.sh @@ -7,6 +7,8 @@ fi # 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" +elif [ "$AIO_LOG_LEVEL" = "info" ]; then + REDIS_LOG_LEVEL="notice" else REDIS_LOG_LEVEL="$AIO_LOG_LEVEL" fi