Skip to content

Commit

Permalink
Remove debug print in TestForLongString
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbuds authored and emptyrivers committed Mar 6, 2024
1 parent bff57fa commit 7cd5611
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion WeakAuras/GenericTrigger.lua
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ function TestForLongString(trigger, arg)
local test;
local needle = trigger[name]
local caseInsensitive = arg.canBeCaseInsensitive and trigger[name .. "_caseInsensitive"]
print("###", arg.name, ":", caseInsensitive, "from", arg.canBeCaseInsensitive, trigger[name .. "_caseInsensitive"])
if(trigger[name.."_operator"] == "==") then
if caseInsensitive then
test = ("(%s and (%s):lower() == (%s):lower())"):format(name, name, Private.QuotedString(needle))
Expand Down

0 comments on commit 7cd5611

Please sign in to comment.