mirror of
https://github.com/Bluewhale1337/ElvUIModernized.git
synced 2026-07-27 08:24:44 +00:00
48 lines
989 B
Lua
48 lines
989 B
Lua
_G = getfenv()
|
|
|
|
--Cache global variables
|
|
local strmatch = strmatch
|
|
--WoW API
|
|
local GetCVar = GetCVar
|
|
local IsAddOnLoaded = IsAddOnLoaded
|
|
local LoadAddOn = LoadAddOn
|
|
|
|
local _ERROR_COUNT = 0
|
|
local _ERROR_LIMIT = 1000
|
|
|
|
function _ERRORMESSAGE_NEW(message)
|
|
debuginfo()
|
|
|
|
LoadAddOn("!DebugTools")
|
|
local loaded = IsAddOnLoaded("!DebugTools")
|
|
|
|
if (GetCVar("ShowErrors") == "1") then
|
|
if (not loaded or DEBUG_DEBUGTOOLS) then
|
|
ScriptErrors_Message:SetText(message)
|
|
ScriptErrors:Show()
|
|
if (DEBUG_DEBUGTOOLS) then
|
|
ScriptErrorsFrame_OnError(message)
|
|
end
|
|
else
|
|
ScriptErrorsFrame_OnError(message)
|
|
end
|
|
elseif (loaded) then
|
|
ScriptErrorsFrame_OnError(message, true)
|
|
end
|
|
|
|
_ERROR_COUNT = _ERROR_COUNT + 1
|
|
if (_ERROR_COUNT == _ERROR_LIMIT) then
|
|
StaticPopup_Show("TOO_MANY_LUA_ERRORS")
|
|
end
|
|
|
|
return message
|
|
end
|
|
|
|
seterrorhandler(_ERRORMESSAGE_NEW)
|
|
|
|
function message(text)
|
|
if (not ScriptErrors:IsShown()) then
|
|
ScriptErrors_Message:SetText(text)
|
|
ScriptErrors:Show()
|
|
end
|
|
end |