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 | cf3671d70608aa587dec9bc6a2a150d7779ed2b1 (patch) | |
| tree | 7f6fabeb4f77b3cf8754228fc9a674bd797c95a3 /lib/cobalt.js | |
| parent | ced4d318779494e2a23b51855bce1255df8de207 (diff) | |
Adds placeholders for extended console API
Diffstat (limited to 'lib/cobalt.js')
| -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; |