removing console logs

This commit is contained in:
Julian Lam
2014-05-25 15:57:00 -04:00
parent 753779296b
commit b0b28fad8e
2 changed files with 0 additions and 2 deletions

1
app.js
View File

@@ -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) {

View File

@@ -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);
}