From 7932b3c13874495792a46f4d87af77332bb0d7ee Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Sat, 1 Aug 2026 16:36:32 +0200 Subject: [PATCH] global-functions: $ScriptInstallUpdate: log existing script with info, not warning --- global-functions.rsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global-functions.rsc b/global-functions.rsc index 6da5e740..457e7ec1 100644 --- a/global-functions.rsc +++ b/global-functions.rsc @@ -1306,7 +1306,7 @@ :foreach Script in=$Scripts do={ :if ([ :len [ /system/script/find where name=$Script ] ] > 0) do={ - $LogPrint warning $0 ("Requested to add script '" . $Script . "', but that exists already!"); + $LogPrint info $0 ("Requested to add script '" . $Script . "', but that exists already!"); } else={ $LogPrint info $0 ("Adding new script: " . $Script); /system/script/add name=$Script owner=$Script source="#!rsc by RouterOS\n" comment=$NewComment;