aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--global-functions.rsc22
1 files changed, 0 insertions, 22 deletions
diff --git a/global-functions.rsc b/global-functions.rsc
index ab8860f..c8fec8d 100644
--- a/global-functions.rsc
+++ b/global-functions.rsc
@@ -50,7 +50,6 @@
:global IsMacLocallyAdministered;
:global IsTimeSync;
:global LogPrint;
-:global LogPrintExit2;
:global LogPrintOnce;
:global MAX;
:global MIN;
@@ -744,27 +743,6 @@
}
}
-# log and print with same text, optionally exit
-# Deprectated! - TODO: remove later
-:set LogPrintExit2 do={
- :local Severity [ :tostr $1 ];
- :local Name [ :tostr $2 ];
- :local Message [ :tostr $3 ];
- :local Exit [ :tostr $4 ];
-
- :global LogPrint;
- :global LogPrintOnce;
-
- $LogPrintOnce warning $0 \
- ("This function is deprecated and will be removed. Please make your adjustments!");
-
- $LogPrint $1 $2 $3;
-
- :if ($Exit = "true") do={
- :error ("Hard error to exit.");
- }
-}
-
# log and print, once until reboot
:set LogPrintOnce do={
:local Severity [ :tostr $1 ];