Browse Source

Fixed error spacing with a !

|ERROR!] is better than [ERROR ], as per @ChaosMTA and @Cedarlug mentioned.
pull/1255/head
UltimateByte 8 years ago
committed by GitHub
parent
commit
b4d3bb549e
  1. 8
      lgsm/functions/core_messages.sh

8
lgsm/functions/core_messages.sh

@ -157,17 +157,17 @@ fn_print_fail_nl(){
# [ ERROR ] # [ ERROR ]
fn_print_error(){ fn_print_error(){
if [ -n "${commandaction}" ]; then if [ -n "${commandaction}" ]; then
echo -en "${creeol}[${red}ERROR ${default}] ${commandaction} ${servicename}: $@" echo -en "${creeol}[${red}ERROR!${default}] ${commandaction} ${servicename}: $@"
else else
echo -en "${creeol}[${red}ERROR ${default}] $@" echo -en "${creeol}[${red}ERROR!${default}] $@"
fi fi
} }
fn_print_error_nl(){ fn_print_error_nl(){
if [ -n "${commandaction}" ]; then if [ -n "${commandaction}" ]; then
echo -en "${creeol}[${red}ERROR ${default}] ${commandaction} ${servicename}: $@" echo -en "${creeol}[${red}ERROR!${default}] ${commandaction} ${servicename}: $@"
else else
echo -en "${creeol}[${red}ERROR ${default}] $@" echo -en "${creeol}[${red}ERROR!${default}] $@"
fi fi
sleep 0.5 sleep 0.5
echo -en "\n" echo -en "\n"

Loading…
Cancel
Save