diff options
author | Christian Hesse <mail@eworm.de> | 2020-02-26 14:19:54 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2020-02-26 14:19:54 +0100 |
commit | ceaa83b83edb069ecf1cca181ec461519f0cc020 (patch) | |
tree | 1c48dd40fcdc3cd59a184a81acf8e6161e98d159 /email-backup | |
parent | 6036edb506a7101d95eb293d0509b4ff178d7191 (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 'email-backup')
-rw-r--r-- | email-backup | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/email-backup b/email-backup index 45e7703..978ac4d 100644 --- a/email-backup +++ b/email-backup @@ -14,11 +14,11 @@ :global CharacterReplace; :global DeviceInfo; -:global LogAndError; +:global LogPrintExit; :if ($BackupSendBinary != true && \ $BackupSendExport != true) do={ - $LogAndError error ("Configured to send neither backup nor config export."); + $LogPrintExit error ("Configured to send neither backup nor config export.") true; } # filename based on identity |