diff --git a/lgsm/functions/alert.sh b/lgsm/functions/alert.sh index 6c84a883d..e0b6b4a0e 100644 --- a/lgsm/functions/alert.sh +++ b/lgsm/functions/alert.sh @@ -46,19 +46,19 @@ fi if [ "${emailnotification}" == "on" ]||[ "${emailalert}" == "on" ]&&[ -n "${email}" ]; then alert_email.sh elif [ "${emailnotification}" != "on" ]||[ "${emailalert}" != "on" ]&&[ "${selfname}" == "command_test_alert.sh" ]; then - fn_print_info_nl "Email alerts not enabled" - fn_script_log_info "Email alerts not enabled" + fn_print_warn "Email alerts not enabled" + fn_script_log_warn "Email alerts not enabled" elif [ -z "${email}" ]&&[ "${selfname}" == "command_test_alert.sh" ]; then - fn_print_fail_nl "Email not set" - fn_script_log "Email not set" + fn_print_error "Email not set" + fn_script_log_error "Email not set" fi if [ "${pushbulletalert}" == "on" ]&&[ -n "${pushbullettoken}" ]; then alert_pushbullet.sh elif [ "${pushbulletalert}" != "on" ]&&[ "${selfname}" == "command_test_alert.sh" ]; then - fn_print_info_nl "Pushbullet alerts not enabled" - fn_script_log_info "Pushbullet alerts not enabled" + fn_print_warn "Pushbullet alerts not enabled" + fn_script_log_warn "Pushbullet alerts not enabled" elif [ -z "${pushbullettoken}" ]&&[ "${selfname}" == "command_test_alert.sh" ]; then - fn_print_fail_nl "Pushbullet token not set" - fn_script_log_warn "Pushbullet token not set" + fn_print_error "Pushbullet token not set" + fn_script_error_warn "Pushbullet token not set" fi \ No newline at end of file