log pipeline file read on a trace level instead of info to reduce initial console log size

This commit is contained in:
Iuri Matias 2017-02-06 07:03:14 -05:00
parent e8db6dc8a0
commit 5840e57079

View File

@ -14,10 +14,8 @@ Pipeline.prototype.build = function(abi) {
var self = this;
for(var targetFile in this.assetFiles) {
// TODO: run the plugin here instead, for each file
var contentFiles = this.assetFiles[targetFile].map(file => {
self.logger.info("reading " + file.filename);
self.logger.trace("reading " + file.filename);
var pipelinePlugins = this.plugins.getPluginsFor('pipeline');