Trend Explorer
Recent download momentum
Hourly download deltas for the last 48 hours.
About this addon
What it does
PrintTracer hooks the print function in order to display the source of print function calls. This can help if you have some spammy debug text in your chat window and you don't know what addon is writing it. Here's the full code.
local oldprint = print
print = function(text, ...)
text = tostring(text)
for n=1,select('#', ...) do
local e = select(n, ...)
text = text.." "..tostring(e)
end
local source = gsub(strtrim(debugstack(2,1,0),".\n"),"Interface\\AddOns\\","")
text = "PT: print(\""..text.."\") called from "..source
return oldprint(text)
end
At-a-glance numbers
Performance highlights
- Peaked at Hot #3014 on Jun 4, 2026.
- Peaked at Rising #4785 on May 6, 2026.
- Featured on the Hot list across 5 distinct weeks.
- Shipped 1 release in the last 30 days.
- Averaging 0 new downloads per day over the past week.