errorlog-browser v1.0.6
errorlog
. A simple console.error override written in pure javascript.
How to use ?
Make sure you include errorLog.js in your page. Recommended as first file that loads. Set up the snippet to transport data back to you server.
Installation
bower install errorlog
npm install errorlog-browser
API
onError(error, log)
Callback that enables you to decorade the error object that is beeing collected. By default this object will look like this : var errorObj = { title: errTitle, lineColumn: errLineColumn0, windowHeight: windowHeight, windowWidth: windowWidth, os: os, browser: browser, url: url, payload: errPayload };
Example
Send
You have to implement this method yourself. This snippet is completely agnostic to any transport. You have access to the collected errors in the errorLogger.logger.log array.