Skip to content

A simple console.error override written in pure javascript.

Notifications You must be signed in to change notification settings

sierraindiagolf/errorlog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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: errLineColumn[0], windowHeight: windowHeight, windowWidth: windowWidth, os: os, browser: browser, url: url, payload: errPayload };

Example

errorLogger.logger.onError = function (errorObj, originalError) { //do stuf here... }

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.

Example

errorLogger.logger.send = function () { XHR(errorLogger.logger.log) }