當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js Console.trace([message][, ...args])用法及代碼示例


console.trace([message][, ...args])

添加於:v0.1.104

參數

將字符串 'Trace: ' 打印到 stderr ,後跟 util.format() 格式化消息和堆棧跟蹤到代碼中的當前位置。

console.trace('Show me');
// Prints: (stack trace will vary based on where trace is called)
//  Trace: Show me
//    at repl:2:9
//    at REPLServer.defaultEval (repl.js:248:27)
//    at bound (domain.js:287:14)
//    at REPLServer.runBound [as eval] (domain.js:300:12)
//    at REPLServer.<anonymous> (repl.js:412:12)
//    at emitOne (events.js:82:20)
//    at REPLServer.emit (events.js:169:7)
//    at REPLServer.Interface._onLine (readline.js:210:10)
//    at REPLServer.Interface._line (readline.js:549:8)
//    at REPLServer.Interface._ttyWrite (readline.js:826:14)

相關用法


注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品 Console.trace([message][, ...args])。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。