mirror of https://github.com/nodejs/node.git
Print libuv counters after http_simple exits
parent
c344fbc285
commit
f018be3b5f
|
@ -110,3 +110,6 @@ server.listen(port, function () {
|
||||||
console.log('Listening at http://127.0.0.1:'+port+'/');
|
console.log('Listening at http://127.0.0.1:'+port+'/');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
process.on('exit', function() {
|
||||||
|
console.error('libuv counters', process.uvCounters());
|
||||||
|
});
|
||||||
|
|
Loading…
Reference in New Issue