diff options
author | John McLear <john@mclear.co.uk> | 2014-11-06 17:38:38 +0000 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2014-11-06 17:38:38 +0000 |
commit | fc5152c2f3199ec6056fc97a04eda3afd733eae0 (patch) | |
tree | 23bbe454d69654beaa173531ea94f1125cceb92f /src/static/js | |
parent | c7061e47db8aa7828461fc3344e69a6b4dc6d319 (diff) | |
download | etherpad-lite-fc5152c2f3199ec6056fc97a04eda3afd733eae0.zip |
remove logging
Diffstat (limited to 'src/static/js')
-rw-r--r-- | src/static/js/pluginfw/installer.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/static/js/pluginfw/installer.js b/src/static/js/pluginfw/installer.js index 7480e152..c1a9adad 100644 --- a/src/static/js/pluginfw/installer.js +++ b/src/static/js/pluginfw/installer.js @@ -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); |