Remove stray console.log statements.

This commit is contained in:
Ben Newman
2014-12-17 12:55:00 -05:00
parent c2ce95fd11
commit 6f41fe9b4d

View File

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