diff --git a/src/filesystem/impls/appshell/AppshellFileSystem.js b/src/filesystem/impls/appshell/AppshellFileSystem.js index 2bb48aa3845..46f8d673064 100644 --- a/src/filesystem/impls/appshell/AppshellFileSystem.js +++ b/src/filesystem/impls/appshell/AppshellFileSystem.js @@ -34,7 +34,7 @@ define(function (require, exports, module) { NodeDomain = require("utils/NodeDomain"); var FILE_WATCHER_BATCH_TIMEOUT = 200; // 200ms - granularity of file watcher changes - + /** * Callback to notify FileSystem of watcher changes * @type {?function(string, FileSystemStats=)} @@ -91,7 +91,8 @@ define(function (require, exports, module) { if (needsStats) { exports.stat(path, function (err, stats) { if (err) { - console.warn("Unable to stat changed path: ", path, err); + // warning has been removed due to spamming the console - see #7332 + // console.warn("Unable to stat changed path: ", path, err); return; } _changeCallback(path, stats);