我正在使用Node.js v5.8.0。
我想让console.error
作为console.trace
工作,所以我使用了console.error = console.trace;
。但是当我调用console.error
时,发生了致命的内存错误:
<--- Last few GCs --->
29296 ms: Mark-sweep 1328.1 (1403.1) -> 1328.1 (1404.1) MB, 32.8 / 0.0 ms [allocation failure] [GC in old space requested].
29314 ms: Mark-sweep 1328.1 (1404.1) -> 1328.1 (1404.1) MB, 17.8 / 0.0 ms [allocation failure] [GC in old space requested].
29333 ms: Mark-sweep 1328.1 (1404.1) -> 1338.8 (1403.1) MB, 19.7 / 0.0 ms [last resort gc].
29353 ms: Mark-sweep 1338.8 (1403.1) -> 1349.7 (1403.1) MB, 19.3 / 0.0 ms [last resort gc].
<--- JS stacktrace --->
==== JS stack trace =========================================
Security context: 00000318EFDCFB61 <JS Object>
1: DoJoin(aka DoJoin) [native array.js:~129] [pc=00000130FFFB1B73] (this=00000318EFD04381 <undefined>,w=000001FBBADF90E1 <JS Array[17]>,x=17,N=00000318EFD043C1 <true>,J=000003D7BECEC771 <String[1]\: \n>,I=00000318EFDB46F1 <JS Function ConvertToString (SharedFunctionInfo 00000318EFD52DC9)>)
2: Join(aka Join) [native array.js:180] [pc=00000130FFF08772] (this=00000318EFD04381 <undefined>...
FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
是什么原因? console.trace
在内部调用console.error
吗?
答案 0 :(得分:5)
在NodeJS中,console.error
和console.warn
用于打印到标准错误输出。 console.trace
在内部使用console.error
打印到标准错误输出,因为console.trace
通常用于错误。
以下链接指向console.trace
调用console.error
的行:
https://github.com/nodejs/node/blob/1c84579031e34326742c9c264f54625c5918197c/lib/console.js#L89
您可以尝试以下代码:
console.trace = function trace() {
var err = new Error();
err.name = 'Trace';
err.message = util.format.apply(null, arguments);
Error.captureStackTrace(err, trace);
this.oldWarn(err.stack);
};
console.oldWarn = console.warn;
console.error = console.warn = console.trace;