chore(logging): remove console.log(isStaticPage)

This commit is contained in:
Tyler Renelle 2014-02-06 13:27:57 -07:00
parent 66c7f48e2b
commit f7ded9d690

View file

@ -226,7 +226,7 @@ module.exports.locals = function(req, res, next) {
if(err) return res.json(500, {err: err});
var isStaticPage = req.url.split('/')[1] === 'static'; // If url contains '/static/'
console.log(isStaticPage)
//console.log(isStaticPage)
// Load moment.js language file only when not on static pages
language.momentLang = ((!isStaticPage && momentLangs[language.code])|| undefined);