From 556367ecbdf34bd80e431abcc9275f8f0e37295f Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Tue, 1 Mar 2022 14:23:10 +0200 Subject: [PATCH] chore(solc): make on_solc_success a no-op to avoid duplicate logs --- ethers-solc/src/report.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ethers-solc/src/report.rs b/ethers-solc/src/report.rs index af6ff608..812adee6 100644 --- a/ethers-solc/src/report.rs +++ b/ethers-solc/src/report.rs @@ -134,10 +134,6 @@ impl Reporter for BasicStdoutReporter { ); } - /// Invoked with the `CompilerOutput` if [`Solc::compiled()`] was successful - fn on_solc_success(&self, _: &Solc, _: &Version, _: &CompilerOutput) { - println!("Compilation finished successfully"); - } /// Invoked before a new [`Solc`] bin is installed fn on_solc_installation_start(&self, version: &Version) { println!("installing solc version \"{}\"", version);