From 5840e570799296b34f3c23d40ab4e091a3a486f9 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Mon, 6 Feb 2017 07:03:14 -0500 Subject: [PATCH] log pipeline file read on a trace level instead of info to reduce initial console log size --- lib/pipeline.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/pipeline.js b/lib/pipeline.js index fb56ac0ea..a290d1618 100644 --- a/lib/pipeline.js +++ b/lib/pipeline.js @@ -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');