From f46db918453dcb8878b9a0de6e122fb0ea2224d9 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Mon, 22 Feb 2021 15:14:10 +0100 Subject: global: give script or function name in log messages --- lease-script | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lease-script') diff --git a/lease-script b/lease-script index a39a874..28f9e20 100644 --- a/lease-script +++ b/lease-script @@ -6,16 +6,17 @@ # run scripts on DHCP lease # https://git.eworm.de/cgit/routeros-scripts/about/doc/lease-script.md +:local 0 "lease-script"; :global GlobalFunctionsReady; :while ($GlobalFunctionsReady != true) do={ :delay 500ms; } -:global LogPrintExit; +:global LogPrintExit2; :if ([ :typeof $leaseActIP ] = "nothing" || \ [ :typeof $leaseActMAC ] = "nothing" || \ [ :typeof $leaseServerName ] = "nothing" || \ [ :typeof $leaseBound ] = "nothing") do={ - $LogPrintExit error "This script is supposed to run from ip dhcp-server." true; + $LogPrintExit2 error $0 ("This script is supposed to run from ip dhcp-server.") true; } :local Scripts; -- cgit v1.2.3-54-g00ecf