diff --git a/src/lib.rs b/src/lib.rs index fee0b44..eae6fa4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -100,7 +100,7 @@ impl BenchmarkRepository Err(error) => panic!("could not find remote “{}”", error), }; - info!("updating branch “{}”", branch_name); + info!("fetching branch “{}” on remote “{}”", branch_name, remote_name); if let Err(error) = remote.fetch(&[branch_name], Some(&mut fetch_options), None) { @@ -110,7 +110,7 @@ impl BenchmarkRepository progress_bar.finish_and_clear(); - trace!("Branch “{}” is up-to-date", branch_name); + trace!("branch “{}” on remote “{}” is up-to-date", branch_name, remote_name); self }