diff options
| author | Ben Beltran <ben@freshout.us> | 2014-01-15 12:17:51 -0600 |
|---|---|---|
| committer | Ben Beltran <ben@freshout.us> | 2014-01-15 12:17:51 -0600 |
| commit | 5c03d3b44c5daeb34180c6922fcf3307f1217cbc (patch) | |
| tree | c63107ac47f28625038ef04cbd627046567a97c8 | |
| parent | a61301f192caf792b6e721753a15f0bd528a8dc9 (diff) | |
Adds placeholders for extended console API
| -rw-r--r-- | lib/cobalt.js | 19 |
1 files changed, 19 insertions, 0 deletions
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; |