From 8e4b6a6383cf3882eebc48dd4e40258a3d300392 Mon Sep 17 00:00:00 2001 From: ansuz Date: Mon, 9 Sep 2019 15:52:04 +0200 Subject: [PATCH] change the log type on noisy messages for easier filtering --- www/common/LessLoader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/LessLoader.js b/www/common/LessLoader.js index d9e7d3078..4817d5a25 100644 --- a/www/common/LessLoader.js +++ b/www/common/LessLoader.js @@ -165,7 +165,7 @@ define([ stack.push(url); cacheGet(url, function (css) { if (css) { return void loadSubmodulesAndInject(css, url, done, stack); } - console.log('CACHE MISS ' + url); + console.debug('CACHE MISS ' + url); ((/\.less([\?\#].*)?$/.test(url)) ? loadLess : loadCSS)(url, function (err, css) { if (!css) { return void console.error(err); } var output = fixAllURLs(css, url);