From b4d3bb549e36198d332e4e5decd6bc30231791e0 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 19:00:02 +0100 Subject: [PATCH] Fixed error spacing with a ! |ERROR!] is better than [ERROR ], as per @ChaosMTA and @Cedarlug mentioned. --- lgsm/functions/core_messages.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index 540729af7..66a1d6d80 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -157,17 +157,17 @@ fn_print_fail_nl(){ # [ ERROR ] fn_print_error(){ if [ -n "${commandaction}" ]; then - echo -en "${creeol}[${red}ERROR ${default}] ${commandaction} ${servicename}: $@" + echo -en "${creeol}[${red}ERROR!${default}] ${commandaction} ${servicename}: $@" else - echo -en "${creeol}[${red}ERROR ${default}] $@" + echo -en "${creeol}[${red}ERROR!${default}] $@" fi } fn_print_error_nl(){ if [ -n "${commandaction}" ]; then - echo -en "${creeol}[${red}ERROR ${default}] ${commandaction} ${servicename}: $@" + echo -en "${creeol}[${red}ERROR!${default}] ${commandaction} ${servicename}: $@" else - echo -en "${creeol}[${red}ERROR ${default}] $@" + echo -en "${creeol}[${red}ERROR!${default}] $@" fi sleep 0.5 echo -en "\n"