global-functions: introduce $LogPrintVerbose ...

... which is a declared function, but has no code, intentionally. It can be
called as a no-op by default.

If you want this output set the function to be the same as $LogPrint:

    :set LogPrintVerbose $LogPrint;
This commit is contained in:
Christian Hesse 2025-03-06 15:02:31 +01:00
parent b43b1b3955
commit e341e1c30c

View file

@ -55,6 +55,7 @@
:global IsTimeSync;
:global LogPrint;
:global LogPrintOnce;
:global LogPrintVerbose;
:global MAX;
:global MIN;
:global MkDir;
@ -848,6 +849,8 @@
:return true;
}
# The function $LogPrintVerbose is declared, but has no code, intentionally.
# get max value
:set MAX do={
:if ($1 > $2) do={ :return $1; }