sms-action: switch to $LogPrint

This commit is contained in:
Christian Hesse 2024-03-08 12:45:38 +01:00
parent 88d4c0aff8
commit 5a487d15c2
1 changed files with 4 additions and 3 deletions

View File

@ -16,13 +16,14 @@
:global SmsAction;
:global LogPrintExit2;
:global LogPrint;
:global ValidateSyntax;
:local Action $action;
:if ([ :typeof $Action ] = "nothing") do={
$LogPrintExit2 error $ScriptName ("This script is supposed to run from SMS hook with action=...") true;
$LogPrint error $ScriptName ("This script is supposed to run from SMS hook with action=...");
:error false;
}
:local Code ($SmsAction->$Action);
@ -31,6 +32,6 @@
:delay 1s;
[ :parse $Code ];
} else={
$LogPrintExit2 warning $ScriptName ("The code for action '" . $Action . "' failed syntax validation!") false;
$LogPrint warning $ScriptName ("The code for action '" . $Action . "' failed syntax validation!");
}
} on-error={ }