2015-04-10 11:30:32 +02:00
|
|
|
# Console
|
2012-02-27 20:09:34 +01:00
|
|
|
|
2015-02-25 01:15:26 +01:00
|
|
|
Stability: 2 - Stable
|
2012-03-03 00:14:03 +01:00
|
|
|
|
2015-04-10 11:30:32 +02:00
|
|
|
The module defines a `Console` class and exports a `console` object.
|
|
|
|
|
|
|
|
The `console` object is a special instance of `Console` whose output is
|
|
|
|
sent to stdout or stderr.
|
|
|
|
|
|
|
|
For ease of use, `console` is defined as a global object and can be used
|
|
|
|
directly without `require`.
|
|
|
|
|
2015-11-04 16:51:43 +01:00
|
|
|
## Class: Console
|
|
|
|
|
|
|
|
<!--type=class-->
|
|
|
|
|
|
|
|
Use `require('console').Console` or `console.Console` to access this class.
|
|
|
|
|
|
|
|
var Console = require('console').Console;
|
|
|
|
var Console = console.Console;
|
|
|
|
|
|
|
|
You can use `Console` class to custom simple logger like `console`, but with
|
|
|
|
different output streams.
|
|
|
|
|
|
|
|
### new Console(stdout[, stderr])
|
|
|
|
|
|
|
|
Create a new `Console` by passing one or two writable stream instances.
|
|
|
|
`stdout` is a writable stream to print log or info output. `stderr`
|
|
|
|
is used for warning or error output. If `stderr` isn't passed, the warning
|
|
|
|
and error output will be sent to the `stdout`.
|
|
|
|
|
|
|
|
var output = fs.createWriteStream('./stdout.log');
|
|
|
|
var errorOutput = fs.createWriteStream('./stderr.log');
|
|
|
|
// custom simple logger
|
|
|
|
var logger = new Console(output, errorOutput);
|
|
|
|
// use it like console
|
|
|
|
var count = 5;
|
|
|
|
logger.log('count: %d', count);
|
|
|
|
// in stdout.log: count 5
|
|
|
|
|
|
|
|
The global `console` is a special `Console` whose output is sent to
|
|
|
|
`process.stdout` and `process.stderr`:
|
|
|
|
|
|
|
|
new Console(process.stdout, process.stderr);
|
|
|
|
|
2015-04-10 11:30:32 +02:00
|
|
|
## console
|
|
|
|
|
2012-02-27 20:09:34 +01:00
|
|
|
* {Object}
|
|
|
|
|
|
|
|
<!--type=global-->
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2015-04-10 11:30:32 +02:00
|
|
|
For printing to stdout and stderr. Similar to the console object functions
|
2011-08-31 15:12:34 +02:00
|
|
|
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.
|
|
|
|
|
2015-11-04 16:51:43 +01:00
|
|
|
### console.assert(value[, message][, ...])
|
2013-03-23 15:38:17 +01:00
|
|
|
|
2015-11-04 16:51:43 +01:00
|
|
|
Similar to [assert.ok()][], but the error message is formatted as
|
|
|
|
`util.format(message...)`.
|
2012-04-21 19:55:14 +02:00
|
|
|
|
2015-04-10 11:30:32 +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:
|
|
|
|
|
2015-01-07 22:54:25 +01:00
|
|
|
- `showHidden` - if `true` then the object's non-enumerable and symbol
|
|
|
|
properties will be shown too. Defaults to `false`.
|
2014-06-08 11:14:14 +02:00
|
|
|
|
|
|
|
- `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.
|
2015-11-10 21:27:48 +01:00
|
|
|
Defaults to `false`. Colors are customizable, see [customizing util.inspect colors][].
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2015-11-04 16:51:43 +01:00
|
|
|
### console.error([data][, ...])
|
|
|
|
|
|
|
|
Same as `console.log` but prints to stderr.
|
|
|
|
|
|
|
|
### console.info([data][, ...])
|
|
|
|
|
|
|
|
Same as `console.log`.
|
|
|
|
|
|
|
|
### console.log([data][, ...])
|
|
|
|
|
|
|
|
Prints to stdout with newline. This function can take multiple arguments in a
|
|
|
|
`printf()`-like way. Example:
|
|
|
|
|
|
|
|
var count = 5;
|
|
|
|
console.log('count: %d', count);
|
|
|
|
// prints 'count: 5'
|
|
|
|
|
|
|
|
If formatting elements are not found in the first string then `util.inspect`
|
|
|
|
is used on each argument. See [util.format()][] for more information.
|
|
|
|
|
2015-10-29 20:22:12 +01:00
|
|
|
### console.time(label)
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2015-10-07 20:01:36 +02:00
|
|
|
Starts a timer that can be used to compute the duration of an operation. Timers
|
|
|
|
are identified by a unique name. Use the same name when you call
|
2015-11-14 04:21:49 +01:00
|
|
|
[`console.timeEnd()`][] to stop the timer and output the elapsed time in
|
|
|
|
milliseconds. Timer durations are accurate to the sub-millisecond.
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2015-10-29 20:22:12 +01:00
|
|
|
### console.timeEnd(label)
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2014-12-22 21:40:27 +01:00
|
|
|
Stops a timer that was previously started by calling
|
2015-11-14 04:21:49 +01:00
|
|
|
[`console.time()`][] and prints the result to the
|
2014-12-22 21:40:27 +01:00
|
|
|
console.
|
|
|
|
|
|
|
|
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');
|
2015-10-07 19:58:39 +02:00
|
|
|
// prints 100-elements: 225.438ms
|
2011-04-19 01:52:53 +02:00
|
|
|
|
2015-04-10 11:30:32 +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
|
|
|
|
2015-11-04 16:51:43 +01:00
|
|
|
### console.warn([data][, ...])
|
2015-04-10 11:30:32 +02:00
|
|
|
|
2015-11-04 16:51:43 +01:00
|
|
|
Same as `console.error`.
|
2015-11-14 04:21:49 +01:00
|
|
|
|
|
|
|
[assert.ok()]: assert.html#assert_assert_value_message_assert_ok_value_message
|
|
|
|
[customizing util.inspect colors]: util.html#util_customizing_util_inspect_colors
|
|
|
|
[util.format()]: util.html#util_util_format_format
|
|
|
|
[`console.timeEnd()`]: #console_console_timeend_label
|
|
|
|
[`console.time()`]: #console_console_time_label
|