From 4b64f00cc09d4879cbca2f81a95e6d83ff073ce0 Mon Sep 17 00:00:00 2001 From: ansuz Date: Tue, 13 Sep 2016 12:12:02 +0200 Subject: [PATCH] don't log when cleaning up idle channels --- storage/file.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/storage/file.js b/storage/file.js index cdd4dbb88..9cfeffc17 100644 --- a/storage/file.js +++ b/storage/file.js @@ -138,8 +138,7 @@ module.exports.create = function (conf, cb) { Object.keys(env.channels).forEach(function (id) { var channel = env.channels[id]; if (now - channel.atime > (1000 * 60)) { - console.log("Cleaning up channel [%s]", id); - + //console.log("Cleaning up idle channel [%s]", id); channel.stream.close(); delete env.channels[id]; }