1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-11-29 05:14:41 +03:00

chore(log): add trace log about which command is being run

This commit is contained in:
Orhun Parmaksız 2024-10-25 20:12:49 +03:00
parent 99b78b52f2
commit a9b26901e3
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90

View File

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