changing undetected minified JS file warning to info message instead

This commit is contained in:
psychobunny
2014-01-25 00:05:41 -05:00
parent 0a749023cb
commit d67ae5c2be

View File

@@ -255,7 +255,7 @@ var fs = require('fs'),
},
minFile: function (next) {
if (!fs.existsSync(Meta.js.minFile)) {
winston.warn('No minified client-side library found');
winston.info('No minified client-side library found');
return next(null, 0);
}