removing console logs

v1.18.x
Julian Lam 11 years ago
parent 753779296b
commit b0b28fad8e

@ -265,7 +265,6 @@ function resetThemes(callback) {
function resetPlugin(pluginId) { function resetPlugin(pluginId) {
var db = require('./src/database'); var db = require('./src/database');
db.setRemove('plugins:active', pluginId, function(err, result) { db.setRemove('plugins:active', pluginId, function(err, result) {
console.log(result);
if (err || result !== 1) { if (err || result !== 1) {
winston.error('[reset] Could not disable plugin: ' + pluginId); winston.error('[reset] Could not disable plugin: ' + pluginId);
if (err) { if (err) {

@ -199,7 +199,6 @@
} }
function loadClient(language, filename, callback) { function loadClient(language, filename, callback) {
console.log(config['cache-buster']);
$.getJSON(config.relative_path + '/language/' + language + '/' + filename + '.json?v=' + config['cache-buster'], callback); $.getJSON(config.relative_path + '/language/' + language + '/' + filename + '.json?v=' + config['cache-buster'], callback);
} }

Loading…
Cancel
Save