From e1a5d3af432d2f0eda2400670c9d62136a2724cb Mon Sep 17 00:00:00 2001 From: lightchpa Date: Tue, 8 Nov 2016 13:03:59 +0100 Subject: [PATCH] severity change on on log call --- middleware.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/middleware.js b/middleware.js index ca14258..10856b0 100644 --- a/middleware.js +++ b/middleware.js @@ -290,7 +290,7 @@ module.exports = function(options) { checkImports(sassPath, cssStats.mtime, function(changed) { if (debug && changed && changed.length) { changed.forEach(function(path) { - log('info', 'modified import %s', path); + log('debug', 'modified import %s', path); }); } changed && changed.length ? compile() : next();