Skip to content

Commit

Permalink
chore(log): add trace log about which command is being run
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Oct 25, 2024
1 parent 99b78b5 commit a9b2690
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions git-cliff-core/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ pub fn run(
input: Option<String>,
envs: Vec<(&str, &str)>,
) -> Result<String> {
log::trace!("Running command: {:?}", command);
let mut child = if cfg!(target_os = "windows") {
Command::new("cmd")
.envs(envs)
Expand Down

0 comments on commit a9b2690

Please sign in to comment.