Skip to content

Commit

Permalink
console: Add common aliases for console methods
Browse files Browse the repository at this point in the history
  • Loading branch information
aks- committed Oct 21, 2015
1 parent 07d4183 commit 23cba06
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
8 changes: 8 additions & 0 deletions doc/api/console.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ is used on each argument. See [util.format()][] for more information.

Same as `console.log`.

### console.debug([data][, ...])

Same as `console.log`.

### console.error([data][, ...])

Same as `console.log` but prints to stderr.
Expand All @@ -56,6 +60,10 @@ Same as `console.log` but prints to stderr.

Same as `console.error`.

### console.exception([data][, ...])

Same as `console.error`

### console.dir(obj[, options])

Uses `util.inspect` on `obj` and prints resulting string to stdout. This function
Expand Down
6 changes: 6 additions & 0 deletions lib/console.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ Console.prototype.log = function() {
Console.prototype.info = Console.prototype.log;


Console.prototype.debug = Console.prototype.log;


Console.prototype.warn = function() {
this._stderr.write(util.format.apply(this, arguments) + '\n');
};
Expand All @@ -48,6 +51,9 @@ Console.prototype.warn = function() {
Console.prototype.error = Console.prototype.warn;


Console.prototype.exception = Console.prototype.warn;


Console.prototype.dir = function(object, options) {
this._stdout.write(util.inspect(object, util._extend({
customInspect: false
Expand Down

0 comments on commit 23cba06

Please sign in to comment.