diff --git a/scripts/helmcharts/openreplay-cli b/scripts/helmcharts/openreplay-cli index 3cd47405b..9411d6a7b 100755 --- a/scripts/helmcharts/openreplay-cli +++ b/scripts/helmcharts/openreplay-cli @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # vim: set ft=sh: OR_DIR="/var/lib/openreplay" @@ -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}"