When I try to either logout or exit WoW, I get some spam in the chat window related to /played time and then a stackoverflow error which locks up the computer until I ALT-F4 to close it.
Hope others are seeing this so it can be remedied.
I am removing this little piece of code until I can spend more time with it. If you want to update your mod, you need to remove a few lines from CensusPlusProfiler.lua.
oldLogout = Logout;
oldQuit = Quit;
function Quit()
RequestTimePlayed();
oldQuit();
end
function Logout()
RequestTimePlayed();
oldLogout();
end
I found that if Census is started and doing a /who when you exit or log out it hangs up. My solution since I do auto census is either wait for it to finish or stop it before I exit or log out.