Skip to content

Commit

Permalink
Adds repo name to 'opening repository' debug messages
Browse files Browse the repository at this point in the history
Signed-off-by: David Gilligan-Cook <dcook@imageworks.com>
  • Loading branch information
dcookspi committed Aug 19, 2024
1 parent e5fee51 commit 55fe133
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/spfs/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -587,11 +587,11 @@ impl Config {
match self.remote.get(remote_name.as_ref()) {
Some(Remote::Address(remote)) => {
let config = RemoteConfig::from_address(remote.address.clone()).await?;
tracing::debug!(?config, "opening repository");
tracing::debug!(?config, "opening '{}' repository", remote_name.as_ref());
config.open().await
}
Some(Remote::Config(config)) => {
tracing::debug!(?config, "opening repository");
tracing::debug!(?config, "opening '{}' repository", remote_name.as_ref());
config.open().await
}
None => {
Expand Down

0 comments on commit 55fe133

Please sign in to comment.