X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/875bfe398124d8aabd01787b99fd53d5c64bb59e..a3899fd80710d7faee391844c6cb10a67df4f6cb:/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) {