Hi, According to [this line](https://github.com/trufflesuite/truffle-compile/blob/develop/index.js#L123), seems like it's possible to silent all the warning when compiling the contracts. But, it didn't worked for me. I have tried many ways: ``` $ truffle compile -quiet $ truffle compile --quiet $ truffle compile --quiet=true $ truffle compile --quiet="true" $ truffle compile --quiet true $ truffle compile --quiet "true" ``` Adding the `quite` key inside truffle.js file also didn't work for me: ``` development: { quiet: true, host: "127.0.0.1", port: 7545, network_id: "*" // match any network } ``` All of above commands didn't work for me. Any pointers? Thanks.
Hi,
According to this line, seems like it's possible to silent all the warning when compiling the contracts.
But, it didn't worked for me. I have tried many ways:
Adding the
quitekey inside truffle.js file also didn't work for me:All of above commands didn't work for me. Any pointers?
Thanks.