Browse Source

doc: console.trace takes a message format

Documentation claimed it accepted a single label argument, as time and
timeEnd do, which was incorrect.

Signed-off-by: Fedor Indutny <fedor@indutny.com>
v0.10.30-release
Sam Roberts 11 years ago
committed by Fedor Indutny
parent
commit
96b166f291
  1. 5
      doc/api/console.markdown

5
doc/api/console.markdown

@ -62,9 +62,10 @@ Finish timer, record output. Example:
} }
console.timeEnd('100-elements'); console.timeEnd('100-elements');
## console.trace(label) ## console.trace(message, [...])
Print a stack trace to stderr of the current position. Print to stderr `'Trace :'`, followed by the formatted message and stack trace
to the current position.
## console.assert(value, [message], [...]) ## console.assert(value, [message], [...])

Loading…
Cancel
Save