More better error logging

This commit is contained in:
2024-10-14 16:24:39 +02:00
parent 4268283e6f
commit 623977ccef

View File

@@ -52,11 +52,18 @@ function(allstates, e, prefix, msg, ...)
end end
if not prefix or prefix ~= aura_env.addonprefix then return end if not prefix or prefix ~= aura_env.addonprefix then return end
local name, threat, note = string.split(aura_env.separator, msg) local name, threat, note = strsplit(aura_env.separator, msg)
print("threat", threat)
threat = tonumber(threat) threat = tonumber(threat)
if not name then if not name then
if aura_env.config.debug then if aura_env.config.debug then
print("Could not get name for " .. msg) print(string.format("Could not get name for %s (%s) with deliminer '%s'", msg, name or "nil", aura_env.separator))
end
return
end
if not threat then
if aura_env.config.debug then
print(string.format("Could not get threat for %s (%s) with deliminer '%s'", msg, threat or "nil", aura_env.separator))
end end
return return
end end