aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2021-11-15 22:07:52 +0100
committerGravatar Christian Hesse <mail@eworm.de>2021-11-16 22:21:22 +0100
commit3b997d30870b08b18adc051af5ecca639bd12add (patch)
tree229ca6a6394f09a048edde39a84ef47d79da7ca7
parent8fc88c73f8cb99774727e7b96f9b85a8bf216c2c (diff)
global-functions: drop deprecated function $LogPrintExit
... which has been replaced by $LogPrintExit2 some time ago.
-rw-r--r--global-functions9
1 files changed, 0 insertions, 9 deletions
diff --git a/global-functions b/global-functions
index 85fdf40..ad6b555 100644
--- a/global-functions
+++ b/global-functions
@@ -32,7 +32,6 @@
:global GetRandomNumber;
:global HexToNum;
:global IfThenElse;
-:global LogPrintExit;
:global LogPrintExit2;
:global MkDir;
:global NotificationFunctions;
@@ -441,14 +440,6 @@
:return $3;
}
-# deprecated compatibility wrapper
-:set LogPrintExit do={
- :global LogPrintExit2;
-
- $LogPrintExit2 warning $0 ("This function is deprecated. Please use \$LogPrintExit2 instead.") false;
- $LogPrintExit2 $1 "unknown" $2 $3;
-}
-
# log and print with same text, optionally exit
:set LogPrintExit2 do={
:local Severity [ :tostr $1 ];