PrintTracer

Development Tools 1 more category

Traces the source of print function calls

WoW 12.0.1 Needs Update

Trend Explorer

Recent download momentum

Hourly download deltas for the last 48 hours.

Latest hour +0 Jun 2, 12 PM
Peak hour +3 Jun 4, 5 AM
Average +0 per hour

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.

Discover more

Keep exploring

Similar addons you might also want to check out.