2012-02-27 20:09:34 +01:00
|
|
|
# console
|
|
|
|
|
2012-03-03 00:14:03 +01:00
|
|
|
Stability: 4 - API Frozen
|
|
|
|
|
2012-02-27 20:09:34 +01:00
|
|
|
* {Object}
|
|
|
|
|
|
|
|
<!--type=global-->
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2011-08-31 15:12:34 +02:00
|
|
|
For printing to stdout and stderr. Similar to the console object functions
|
|
|
|
provided by most web browsers, here the output is sent to stdout or stderr.
|
|
|
|
|
2013-03-23 15:38:17 +01:00
|
|
|
The console functions are synchronous when the destination is a terminal or
|
|
|
|
a file (to avoid lost messages in case of premature exit) and asynchronous
|
|
|
|
when it's a pipe (to avoid blocking for long periods of time).
|
|
|
|
|
|
|
|
That is, in the following example, stdout is non-blocking while stderr
|
|
|
|
is blocking:
|
|
|
|
|
|
|
|
$ node script.js 2> error.log | tee info.log
|
|
|
|
|
|
|
|
In daily use, the blocking/non-blocking dichotomy is not something you
|
|
|
|
should worry about unless you log huge amounts of data.
|
|
|
|
|
|
|
|
|
2014-09-30 01:32:34 +02:00
|
|
|
## console.log([data][, ...])
|
2011-04-19 01:52:53 +02:00
|
|
|
|
|
|
|
Prints to stdout with newline. This function can take multiple arguments in a
|
|
|
|
`printf()`-like way. Example:
|
|
|
|
|
2014-09-12 12:07:05 +02:00
|
|
|
var count = 5;
|
2011-04-19 01:52:53 +02:00
|
|
|
console.log('count: %d', count);
|
2014-09-12 12:07:05 +02:00
|
|
|
// prints 'count: 5'
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2011-11-26 03:26:11 +01:00
|
|
|
If formatting elements are not found in the first string then `util.inspect`
|
2012-06-06 21:05:18 +02:00
|
|
|
is used on each argument. See [util.format()][] for more information.
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2014-09-30 01:32:34 +02:00
|
|
|
## console.info([data][, ...])
|
2011-04-19 01:52:53 +02:00
|
|
|
|
|
|
|
Same as `console.log`.
|
|
|
|
|
2014-09-30 01:32:34 +02:00
|
|
|
## console.error([data][, ...])
|
2011-04-19 01:52:53 +02:00
|
|
|
|
|
|
|
Same as `console.log` but prints to stderr.
|
|
|
|
|
2014-09-30 01:32:34 +02:00
|
|
|
## console.warn([data][, ...])
|
2012-04-21 19:55:14 +02:00
|
|
|
|
|
|
|
Same as `console.error`.
|
|
|
|
|
2014-09-25 00:41:31 +02:00
|
|
|
## console.dir(obj[, options])
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2013-01-30 03:44:29 +01:00
|
|
|
Uses `util.inspect` on `obj` and prints resulting string to stdout. This function
|
2014-06-08 12:02:54 +02:00
|
|
|
bypasses any custom `inspect()` function on `obj`. An optional *options* object
|
2014-06-08 11:14:14 +02:00
|
|
|
may be passed that alters certain aspects of the formatted string:
|
|
|
|
|
2014-06-08 12:02:54 +02:00
|
|
|
- `showHidden` - if `true` then the object's non-enumerable properties will be
|
2014-06-08 11:14:14 +02:00
|
|
|
shown too. Defaults to `false`.
|
|
|
|
|
|
|
|
- `depth` - tells `inspect` how many times to recurse while formatting the
|
|
|
|
object. This is useful for inspecting large complicated objects. Defaults to
|
|
|
|
`2`. To make it recurse indefinitely pass `null`.
|
|
|
|
|
|
|
|
- `colors` - if `true`, then the output will be styled with ANSI color codes.
|
|
|
|
Defaults to `false`. Colors are customizable, see below.
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2012-02-27 20:09:34 +01:00
|
|
|
## console.time(label)
|
2011-04-19 01:52:53 +02:00
|
|
|
|
|
|
|
Mark a time.
|
|
|
|
|
2012-02-27 20:09:34 +01:00
|
|
|
## console.timeEnd(label)
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2012-04-21 19:55:14 +02:00
|
|
|
Finish timer, record output. Example:
|
2011-04-19 01:52:53 +02:00
|
|
|
|
|
|
|
console.time('100-elements');
|
2011-07-13 17:10:17 +02:00
|
|
|
for (var i = 0; i < 100; i++) {
|
2011-04-19 01:52:53 +02:00
|
|
|
;
|
|
|
|
}
|
|
|
|
console.timeEnd('100-elements');
|
2014-09-12 12:07:05 +02:00
|
|
|
// prints 100-elements: 262ms
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2014-09-25 00:41:31 +02:00
|
|
|
## console.trace(message[, ...])
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2014-07-19 23:34:41 +02:00
|
|
|
Print to stderr `'Trace :'`, followed by the formatted message and stack trace
|
|
|
|
to the current position.
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2014-09-30 01:32:34 +02:00
|
|
|
## console.assert(value[, message][, ...])
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2014-07-05 23:22:45 +02:00
|
|
|
Similar to [assert.ok()][], but the error message is formatted as
|
|
|
|
`util.format(message...)`.
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2012-06-06 21:05:18 +02:00
|
|
|
[assert.ok()]: assert.html#assert_assert_value_message_assert_ok_value_message
|
|
|
|
[util.format()]: util.html#util_util_format_format
|