]> git.r.bdr.sh - rbdr/cologne/blobdiff - lib/cobalt.js
keep on bumping versions because I forget stuff
[rbdr/cologne] / lib / cobalt.js
index f3effcdcd76b4953b19e6247a85bdd702f20be83..fa4f6234e350378cb29e397ce324513b847163eb 100644 (file)
       },
 
       log : function () {
-        this._log.apply(this, [7].concat([].splice.call(arguments, 0)));
+        this._log.apply(this, [6].concat(Array.prototype.slice.call(arguments)));
+      },
+
+      debug : function () {
+        this._log.apply(this, [7].concat(Array.prototype.slice.call(arguments)));
       },
 
       info : function () {
-        this._log.apply(this, [6].concat([].splice.call(arguments, 0)));
+        this._log.apply(this, [6].concat(Array.prototype.slice.call(arguments)));
       },
 
       notice : function () {
-        this._log.apply(this, [5].concat([].splice.call(arguments, 0)));
+        this._log.apply(this, [5].concat(Array.prototype.slice.call(arguments)));
       },
 
       warn : function () {
-        this._log.apply(this, [4].concat([].splice.call(arguments, 0)));
+        this._log.apply(this, [4].concat(Array.prototype.slice.call(arguments)));
       },
 
       error : function () {
-        this._log.apply(this, [3].concat([].splice.call(arguments, 0)));
+        this._log.apply(this, [3].concat(Array.prototype.slice.call(arguments)));
+      },
+
+      dir : function () {
+      },
+
+      time : function () {
+      },
+
+      timeEnd : function () {
+      },
+
+      groupCollapsed : function () {
+      },
+
+      groupEnd : function () {
       },
 
       separator : function (type) {