From 9beaaa2a29846e964e37dc66719ea0086c1b67cc Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Tue, 19 Jun 2018 15:46:55 -0400 Subject: [PATCH] remove extra logs --- lib/modules/gasEstimator/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/modules/gasEstimator/index.js b/lib/modules/gasEstimator/index.js index ccf34cf61..8cde13193 100644 --- a/lib/modules/gasEstimator/index.js +++ b/lib/modules/gasEstimator/index.js @@ -15,9 +15,7 @@ class GasEstimator { const self = this; let gasMap = {}; self.events.request('contracts:contract', contractName, (contract) => { - self.logger.info("Generating three rounds of fuzz for contract -- ", contractName); let fuzzMap = self.fuzzer.generateFuzz(3, contract); - self.logger.info("-- Beginning gastimation for contract -- " + contractName); let contractObj = new web3.eth.Contract(contract.abiDefinition, contract.deployedAddress); async.each(contract.abiDefinition.filter((x) => x.type !== "event"), (abiMethod, gasCb) => {