Skip to content

Commit

Permalink
update logs
Browse files Browse the repository at this point in the history
  • Loading branch information
benluiwj committed Sep 29, 2024
1 parent 6969bd4 commit 99c1fbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions check_diff/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ pub fn git_remote_add(url: &str) -> Result<(), GitError> {
return Err(error);
}

info!("Successfully added remote.");
info!("Successfully added remote: {url}");
return Ok(());
}

Expand All @@ -143,7 +143,7 @@ pub fn git_fetch(branch_name: &str) -> Result<(), GitError> {
return Err(error);
}

info!("Successfully fetched.");
info!("Successfully fetched: {branch_name}");
return Ok(());
}

Expand Down

0 comments on commit 99c1fbf

Please sign in to comment.