X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/875bfe398124d8aabd01787b99fd53d5c64bb59e..baae83e34afb199c43dea6c37ad607987fb93ebb:/src/fnpjs/logging/handlers.js 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) {