Minor rephrasing

This commit is contained in:
Patrick Lühne 2019-03-02 03:15:45 +01:00
parent 81c5e9b0b7
commit dc842289d2
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 2 additions and 2 deletions

View File

@ -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
}