From: Ben Beltran Date: Wed, 15 Jan 2014 18:17:51 +0000 (-0600) Subject: Adds placeholders for extended console API X-Git-Tag: v1.1.0~19 X-Git-Url: https://git.r.bdr.sh/rbdr/cologne/commitdiff_plain/5c03d3b44c5daeb34180c6922fcf3307f1217cbc?hp=a61301f192caf792b6e721753a15f0bd528a8dc9 Adds placeholders for extended console API --- diff --git a/lib/cobalt.js b/lib/cobalt.js index f3effcd..e1f4bea 100644 --- a/lib/cobalt.js +++ b/lib/cobalt.js @@ -162,6 +162,10 @@ this._log.apply(this, [7].concat([].splice.call(arguments, 0))); }, + 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))); }, @@ -178,6 +182,21 @@ this._log.apply(this, [3].concat([].splice.call(arguments, 0))); }, + dir : function () { + }, + + time : function () { + }, + + timeEnd : function () { + }, + + groupCollapsed : function () { + }, + + groupEnd : function () { + }, + separator : function (type) { var co = this;