chore(logging): remove console.log

This commit is contained in:
Matteo Pagliazzi 2014-02-07 21:08:46 +01:00
parent 677d23939d
commit 2807b3f87d

View file

@ -212,7 +212,6 @@ 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)
// Load moment.js language file only when not on static pages
language.momentLang = ((!isStaticPage && momentLangs[language.code])|| undefined);