From 6f41fe9b4d08c56eec4e2b708de808153b95678f Mon Sep 17 00:00:00 2001 From: Ben Newman Date: Wed, 17 Dec 2014 12:55:00 -0500 Subject: [PATCH] Remove stray console.log statements. --- tools/safe-pathwatcher.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/safe-pathwatcher.js b/tools/safe-pathwatcher.js index 5ba6a75019..9a1ec911c8 100644 --- a/tools/safe-pathwatcher.js +++ b/tools/safe-pathwatcher.js @@ -39,10 +39,7 @@ exports.watch = function watch(absPath, callback) { var now = +new Date; if (now - lastPathwatcherEventTime > pollingInterval) { lastWatchFileEventTime = now; - console.log("firing watchFile event"); callback.apply(this, arguments); - } else { - console.log("dropping watchFile event"); } }