aboutsummaryrefslogtreecommitdiffstats
path: root/sms-action
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2020-02-26 14:19:54 +0100
committerGravatar Christian Hesse <mail@eworm.de>2020-02-26 14:19:54 +0100
commitceaa83b83edb069ecf1cca181ec461519f0cc020 (patch)
tree1c48dd40fcdc3cd59a184a81acf8e6161e98d159 /sms-action
parent6036edb506a7101d95eb293d0509b4ff178d7191 (diff)
global-functions: merge $LogAnd{Error,Put} to $LogPrintExit ...
... and fix logging. Logging with severity from variable (:log $severity ...) is not possible, this is considered a syntax error. Also the 'workaround' with parsing code failed with missing message in log. The reliable code is a lot longer, so merge the two functions to save a lot of duplicate code.
Diffstat (limited to 'sms-action')
-rw-r--r--sms-action4
1 files changed, 2 insertions, 2 deletions
diff --git a/sms-action b/sms-action
index ceb9071..4442baf 100644
--- a/sms-action
+++ b/sms-action
@@ -6,12 +6,12 @@
:global SmsAction;
-:global LogAndError;
+:global LogPrintExit;
:local Action $action;
:if ([ :typeof $Action ] = "nothing") do={
- $LogAndError error "This script is supposed to run from SMS hook with action=...";
+ $LogPrintExit error "This script is supposed to run from SMS hook with action=..." true;
}
:local Code ($SmsAction->$Action);