Update Intelligence.lua

Added function to set verbosity
This commit is contained in:
Applevangelist
2021-02-24 16:22:13 +01:00
committed by GitHub
parent 16bf3a89b5
commit 7751d4ee88

View File

@@ -351,6 +351,15 @@ function INTEL:SetClusterAnalysis(Switch, Markers)
return self
end
--- Set verbosity level for debugging.
-- @param #INTEL self
-- @param #number Verbosity The higher, the noisier, e.g. 0=off, 2=debug
-- @return #INTEL self
function INTEL:SetVerbosity(Verbosity)
self.verbose=Verbosity or 2
return self
end
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- Start & Status
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------