X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/875bfe398124d8aabd01787b99fd53d5c64bb59e..17bbb9fd36eff5978689a9dc4a2fec69b716e674:/src/fnpjs/logging/handlers.js diff --git a/src/fnpjs/logging/handlers.js b/src/fnpjs/logging/handlers.js index 7142101..a85645a 100644 --- a/src/fnpjs/logging/handlers.js +++ b/src/fnpjs/logging/handlers.js @@ -4,6 +4,23 @@ define(function() { return { + console: function(record) { + /* global console */ + var level = record.level, + method, msg; + if(console) { + if(level === 'warning') { + level = 'warn'; + } + method = (typeof console[level] === 'function') ? level : 'log'; + if(record.data && record.data.exception && record.data.exception.stack) { + msg = record.data.exception.stack; + } else { + msg = record.message; + } + console[method](msg); + } + }, raven: function(record) { /* global window */ if(!window.Raven) {