From 08e0ae424d8681b93886462147d84945b883a0b2 Mon Sep 17 00:00:00 2001 From: ansuz Date: Thu, 14 Sep 2017 18:13:03 +0200 Subject: [PATCH] log errors in less compilation --- www/common/LessLoader.js | 1 + 1 file changed, 1 insertion(+) diff --git a/www/common/LessLoader.js b/www/common/LessLoader.js index a4c01c0bf..d09413aa7 100644 --- a/www/common/LessLoader.js +++ b/www/common/LessLoader.js @@ -118,6 +118,7 @@ define([ } console.log('CACHE MISS ' + url); ((/\.less([\?\#].*)?$/.test(url)) ? loadLess : loadCSS)(url, function (err, css) { + if (err) { console.log(err); } var output = fixAllURLs(css, url); cachePut(url, output); inject(output, url);