From b0b28fad8effa49f3623e3b1eba1ae3bc76dc4b1 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Sun, 25 May 2014 15:57:00 -0400 Subject: [PATCH] removing console logs --- app.js | 1 - public/src/translator.js | 1 - 2 files changed, 2 deletions(-) diff --git a/app.js b/app.js index 26cdf378cf..65238fcfd9 100644 --- a/app.js +++ b/app.js @@ -265,7 +265,6 @@ function resetThemes(callback) { function resetPlugin(pluginId) { var db = require('./src/database'); db.setRemove('plugins:active', pluginId, function(err, result) { - console.log(result); if (err || result !== 1) { winston.error('[reset] Could not disable plugin: ' + pluginId); if (err) { diff --git a/public/src/translator.js b/public/src/translator.js index 1aaf063184..20d8db2129 100644 --- a/public/src/translator.js +++ b/public/src/translator.js @@ -199,7 +199,6 @@ } function loadClient(language, filename, callback) { - console.log(config['cache-buster']); $.getJSON(config.relative_path + '/language/' + language + '/' + filename + '.json?v=' + config['cache-buster'], callback); }