From c4314325a3bc40769b6fc8cc90199cfc1b408c38 Mon Sep 17 00:00:00 2001 From: Jonathan Cremin Date: Sun, 23 Aug 2015 13:38:30 +0100 Subject: [PATCH] Remove RSS mem logging --- app.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/app.js b/app.js index 633e1b2..4b8f786 100644 --- a/app.js +++ b/app.js @@ -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;