2011-04-19 01:52:53 +02:00
|
|
|
## console
|
|
|
|
|
|
|
|
Browser-like object for printing to stdout and stderr.
|
|
|
|
|
|
|
|
### console.log()
|
|
|
|
|
|
|
|
Prints to stdout with newline. This function can take multiple arguments in a
|
|
|
|
`printf()`-like way. Example:
|
|
|
|
|
|
|
|
console.log('count: %d', count);
|
|
|
|
|
2011-09-02 18:36:56 +02:00
|
|
|
If formating elements are not found in the first string then `util.inspect`
|
|
|
|
is used on each argument.
|
|
|
|
See [util.format()](util.html#util.format) for more infomation.
|
2011-04-19 01:52:53 +02:00
|
|
|
|
|
|
|
### console.info()
|
|
|
|
|
|
|
|
Same as `console.log`.
|
|
|
|
|
|
|
|
### console.warn()
|
|
|
|
### console.error()
|
|
|
|
|
|
|
|
Same as `console.log` but prints to stderr.
|
|
|
|
|
|
|
|
### console.dir(obj)
|
|
|
|
|
|
|
|
Uses `util.inspect` on `obj` and prints resulting string to stderr.
|
|
|
|
|
|
|
|
### console.time(label)
|
|
|
|
|
|
|
|
Mark a time.
|
|
|
|
|
|
|
|
|
|
|
|
### console.timeEnd(label)
|
|
|
|
|
|
|
|
Finish timer, record output. Example
|
|
|
|
|
|
|
|
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');
|
|
|
|
|
|
|
|
|
|
|
|
### console.trace()
|
|
|
|
|
|
|
|
Print a stack trace to stderr of the current position.
|
|
|
|
|
|
|
|
### console.assert()
|
|
|
|
|
|
|
|
Same as `assert.ok()`.
|
|
|
|
|