From cf3671d70608aa587dec9bc6a2a150d7779ed2b1 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Wed, 15 Jan 2014 12:17:51 -0600 Subject: Adds placeholders for extended console API --- lib/cobalt.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'lib/cobalt.js') 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; -- cgit