Remove RSS mem logging

This commit is contained in:
Jonathan Cremin 2015-08-23 13:38:30 +01:00
parent 652fe5c264
commit c4314325a3

3
app.js
View file

@ -75,9 +75,6 @@ if (!module.parent) {
app.listen(process.env.PORT || 4040, function() {
debug('Koa HTTP server listening on port ' + (process.env.PORT || 4040));
});
setInterval(function() {
debug('%sMB', process.memoryUsage().rss / 1024 / 1024);
}, 10000);
}
export default app;