logging: console handler
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Tue, 31 Dec 2013 11:25:33 +0000 (12:25 +0100)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Tue, 31 Dec 2013 11:25:33 +0000 (12:25 +0100)
src/fnpjs/logging/handlers.js

index 7142101..f6f0509 100644 (file)
@@ -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) {