remove logging
This commit is contained in:
parent
c7061e47db
commit
fc5152c2f3
|
@ -66,7 +66,6 @@ exports.getAvailablePlugins = function(maxCacheAge, cb) {
|
||||||
if(exports.availablePlugins && maxCacheAge && Math.round(+new Date/1000)-cacheTimestamp <= maxCacheAge) {
|
if(exports.availablePlugins && maxCacheAge && Math.round(+new Date/1000)-cacheTimestamp <= maxCacheAge) {
|
||||||
return cb && cb(null, exports.availablePlugins)
|
return cb && cb(null, exports.availablePlugins)
|
||||||
}
|
}
|
||||||
console.log("plugins", plugins);
|
|
||||||
plugins = JSON.parse(plugins);
|
plugins = JSON.parse(plugins);
|
||||||
exports.availablePlugins = plugins;
|
exports.availablePlugins = plugins;
|
||||||
cacheTimestamp = Math.round(+new Date/1000);
|
cacheTimestamp = Math.round(+new Date/1000);
|
||||||
|
|
Loading…
Reference in New Issue