From 12e8d84c18d062a1621e28ef2c54ac295c369b11 Mon Sep 17 00:00:00 2001 From: Rajesh Rajendran Date: Thu, 25 May 2023 14:45:27 +0200 Subject: [PATCH] chore(cli): Adding warn log (#1284) Signed-off-by: rjshrjndrn --- scripts/helmcharts/openreplay-cli | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/helmcharts/openreplay-cli b/scripts/helmcharts/openreplay-cli index 3cd47405b..bb5cffbf6 100755 --- a/scripts/helmcharts/openreplay-cli +++ b/scripts/helmcharts/openreplay-cli @@ -56,6 +56,11 @@ function log () { echo -e "${GREEN}[INFO]" "$@" "${NC}" return ;; + warn) + shift + echo -e "${YELLOW}[WARN]" "$@" "${NC}" + return + ;; debug) shift echo -e "${YELLOW}[DEBUG]" "$@" "${NC}"