Anyone know how to fix the combat log constantly stopping recording?
Printable View
Anyone know how to fix the combat log constantly stopping recording?
The combat log bug is one that began in early Burning Crusade and wasn't fixed by Blizzard until Cataclysm. To fix your combat log and addons that use it, the combat log must be reset.
To reset your combat log use the followimg macro.
/script CombatLogClearEntries
/script CombatLogClearEntries()
/run local f = CreateFrame("frame",nil, UIParent); f:SetScript("OnUpdate", CombatLogClearEntrie
You are amazing!
That code hurts...
The first line does absolutely nothing at all.
The second line reset the CL as intendend but it's not needed because since the reset is done on every frame with line 3, which is missing the full funtion name "...s" and a closing bracket ")"
Either use a prober CombatLogFix or just useCode:/run local f = CreateFrame("frame",nil, UIParent); f:SetScript("OnUpdate", CombatLogClearEntries)