From: Aleksander Ɓukasz Date: Tue, 31 Dec 2013 11:25:33 +0000 (+0100) Subject: logging: console handler X-Git-Url: https://git.mdrn.pl/fnpeditor.git/commitdiff_plain/baae83e34afb199c43dea6c37ad607987fb93ebb logging: console handler --- diff --git a/src/fnpjs/logging/handlers.js b/src/fnpjs/logging/handlers.js index 7142101..f6f0509 100644 --- a/src/fnpjs/logging/handlers.js +++ b/src/fnpjs/logging/handlers.js @@ -4,6 +4,14 @@ define(function() { return { + console: function(record) { + /* global console */ + var method; + if(console) { + method = (typeof console[record.level] === 'function') ? record.level : 'log'; + console[method](record.message); + } + }, raven: function(record) { /* global window */ if(!window.Raven) {