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"); } }