From dc842289d2006e2a4fd712638660f5abae97e9cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Sat, 2 Mar 2019 03:15:45 +0100 Subject: [PATCH] Minor rephrasing --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }