Skip to content

Commit

Permalink
- UseAA Revamp
Browse files Browse the repository at this point in the history
- RGMercUtils cleanup
  • Loading branch information
DerpleMQ2 committed Mar 9, 2024
1 parent a560aa5 commit aa8e9cf
Show file tree
Hide file tree
Showing 3 changed files with 623 additions and 612 deletions.
2 changes: 1 addition & 1 deletion extras/version.lua
Original file line number Diff line number Diff line change
@@ -1 +1 @@
return { commitId = '7cdf41b 2024-03-08' }
return { commitId = 'a560aa5 2024-03-09' }
2 changes: 1 addition & 1 deletion utils/rgmercs_logger.lua
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ local function log(logLevel, output, ...)
if #filters > 0 then
local found = false
for _, logFilter in ipairs(filters) do
if callerTracer:find(logFilter) or output:find(logFilter) then found = true end
if logFilter:len() > 0 and (callerTracer:find(logFilter) or output:find(logFilter)) then found = true end
end

if not found then return end
Expand Down

0 comments on commit aa8e9cf

Please sign in to comment.