I plan on launching a closed beta of a web app I'm working on, and I'd like a way to easily collect console log data from the testers. By "easily" I mean easy for them, because most of them won't be technical enough to open up the console and copy/paste info and errors. Is there some way I can collect this, including all log/info/warn/error statements, and stack traces?
EDIT: I should clarify that it's mostly the unhandled exceptions I'm worried about, so overriding console.error
will do nothing since that function is not being called.