This commit is contained in:
andrew6180
2023-04-16 00:31:14 -07:00
parent 6be1be1c09
commit 1e9fa2aaca
99 changed files with 55800 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
setfenv(1, VoiceOver)
Debug = {}
function Debug:Print(msg, header)
if Addon.db.profile.DebugEnabled then
if header then
print(Utils:ColorizeText("VoiceOver", NORMAL_FONT_COLOR_CODE) ..
Utils:ColorizeText(" (" .. header .. ")", GRAY_FONT_COLOR_CODE) ..
" - " .. msg)
else
print(Utils:ColorizeText("VoiceOver", NORMAL_FONT_COLOR_CODE) ..
" - " .. msg)
end
end
end