From aa12ab947865f5e03093c91ac1a1451097cd227a Mon Sep 17 00:00:00 2001 From: psychobunny Date: Tue, 24 Feb 2015 17:57:18 -0500 Subject: [PATCH] think its fairly safe to say this isn't experimental anymore worked every single time I reloaded today, and that'd be about a hundred thousand times so far --- src/meta/css.js | 4 ++-- src/meta/js.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/meta/css.js b/src/meta/css.js index 9c00ba8633..e0f0412e1c 100644 --- a/src/meta/css.js +++ b/src/meta/css.js @@ -108,7 +108,7 @@ module.exports = function(Meta) { fs.exists(cachePath, function(exists) { if (exists) { if (nconf.get('isPrimary') === 'true') { - winston.verbose('[meta/css] (Experimental) Reading stylesheets from file'); + winston.verbose('[meta/css] Reading stylesheets from file'); async.map([cachePath, acpCachePath], fs.readFile, function(err, files) { Meta.css.cache = files[0]; Meta.css.acpCache = files[1]; @@ -120,7 +120,7 @@ module.exports = function(Meta) { callback(); } } else { - winston.warn('[meta/css] (Experimental) No stylesheets found on disk, re-minifying'); + winston.warn('[meta/css] No stylesheets found on disk, re-minifying'); Meta.css.minify.apply(Meta.css, arguments); } }); diff --git a/src/meta/js.js b/src/meta/js.js index a960d108ee..b8fa903c12 100644 --- a/src/meta/js.js +++ b/src/meta/js.js @@ -213,7 +213,7 @@ module.exports = function(Meta) { fs.exists(scriptPath, function(exists) { if (exists) { if (nconf.get('isPrimary') === 'true') { - winston.verbose('[meta/js] (Experimental) Reading client-side scripts from file'); + winston.verbose('[meta/js] Reading client-side scripts from file'); async.map([scriptPath, mapPath], fs.readFile, function(err, files) { Meta.js.cache = files[0]; Meta.js.map = files[1]; @@ -225,7 +225,7 @@ module.exports = function(Meta) { callback(); } } else { - winston.warn('[meta/js] (Experimental) No script file found on disk, re-minifying'); + winston.warn('[meta/js] No script file found on disk, re-minifying'); Meta.js.minify.apply(Meta.js, arguments); } });