mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-08-04 02:04:56 +02:00
global-functions: $LogPrintOnce: drop support for exit
This is not widely adopted or used, so let's just drop it - no compatibility.
This commit is contained in:
parent
76f65c13d7
commit
19802c0b69
4 changed files with 9 additions and 9 deletions
|
@ -703,7 +703,6 @@
|
|||
:local Severity [ :tostr $1 ];
|
||||
:local Name [ :tostr $2 ];
|
||||
:local Message [ :tostr $3 ];
|
||||
:local Exit [ :tostr $4 ];
|
||||
|
||||
:global LogPrintExit2;
|
||||
|
||||
|
@ -718,7 +717,7 @@
|
|||
}
|
||||
|
||||
:set ($LogPrintOnceMessages->$Message) 1;
|
||||
$LogPrintExit2 $Severity $Name $Message $Exit;
|
||||
$LogPrintExit2 $Severity $Name $Message false;
|
||||
}
|
||||
|
||||
# get max value
|
||||
|
@ -1048,7 +1047,7 @@
|
|||
}
|
||||
} else={
|
||||
$LogPrintOnce warning $0 ("The script '" . $ScriptVal->"name" . "' requires RouterOS " . \
|
||||
$Required . ", which is not met by your installation. Ignoring!") false;
|
||||
$Required . ", which is not met by your installation. Ignoring!");
|
||||
}
|
||||
} else={
|
||||
$LogPrintExit2 warning $0 ("Looks like new script '" . $ScriptVal->"name" . \
|
||||
|
@ -1359,7 +1358,7 @@
|
|||
}
|
||||
|
||||
:if ([ :len ($Symbols->$Name) ] = 0) do={
|
||||
$LogPrintOnce warning $0 ("No symbol available for name '" . $Name . "'!") false;
|
||||
$LogPrintOnce warning $0 ("No symbol available for name '" . $Name . "'!");
|
||||
:return "";
|
||||
}
|
||||
|
||||
|
@ -1540,7 +1539,7 @@
|
|||
# Log success
|
||||
:local Resource [ /system/resource/get ];
|
||||
$LogPrintOnce info $ScriptName ("Loaded on " . $Resource->"board-name" . \
|
||||
" with RouterOS " . $Resource->"version" . ".") false;
|
||||
" with RouterOS " . $Resource->"version" . ".");
|
||||
|
||||
# signal we are ready
|
||||
:set GlobalFunctionsReady true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue