From 91da4525176f8565024a6b302d2914ca44eabd8f Mon Sep 17 00:00:00 2001 From: alanw Date: Tue, 9 May 2023 16:07:33 -0700 Subject: [PATCH] removed logger calls from utils functions. handled by boxline --- functions | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions b/functions index 4994b17..0990505 100644 --- a/functions +++ b/functions @@ -509,7 +509,7 @@ install-dir() { success(){ _line="$@" echo -e "\n" - logger boxborder "${scriptname} ${grn}SUCCESS${dfl} ${_line}" + boxborder "${scriptname} ${grn}SUCCESS${dfl} ${_line}" exit 0 } @@ -518,7 +518,7 @@ warn(){ _line="$@" echo -e "\n" boxtop - logger boxline "${lrd}WARNING${lyl}[${ong}code=${red}$ec${lyl}]: ${_line}${dfl}" + boxline "${lrd}WARNING${lyl}[${ong}code=${red}$ec${lyl}]: ${_line}${dfl}" boxbottom } @@ -527,7 +527,7 @@ fail(){ _line="$@" echo -e "\n" boxtop - logger boxline "${lrd}FAILED${lyl}[${ong}code=${red}$ec${lyl}]: ${_line}${dfl}" + boxline "${lrd}FAILED${lyl}[${ong}code=${red}$ec${lyl}]: ${_line}${dfl}" boxbottom exit $ec }