remove logging

This commit is contained in:
John McLear 2014-11-06 17:38:38 +00:00
parent c7061e47db
commit fc5152c2f3
1 changed files with 0 additions and 1 deletions

View File

@ -66,7 +66,6 @@ exports.getAvailablePlugins = function(maxCacheAge, cb) {
if(exports.availablePlugins && maxCacheAge && Math.round(+new Date/1000)-cacheTimestamp <= maxCacheAge) {
return cb && cb(null, exports.availablePlugins)
}
console.log("plugins", plugins);
plugins = JSON.parse(plugins);
exports.availablePlugins = plugins;
cacheTimestamp = Math.round(+new Date/1000);