From a9b26901e38aa3d3b1042d3bc10d2fe7c6c06565 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Fri, 25 Oct 2024 20:12:49 +0300 Subject: [PATCH] chore(log): add trace log about which command is being run --- git-cliff-core/src/command.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/git-cliff-core/src/command.rs b/git-cliff-core/src/command.rs index c04a48db0d..71a3c652a1 100644 --- a/git-cliff-core/src/command.rs +++ b/git-cliff-core/src/command.rs @@ -23,6 +23,7 @@ pub fn run( input: Option, envs: Vec<(&str, &str)>, ) -> Result { + log::trace!("Running command: {:?}", command); let mut child = if cfg!(target_os = "windows") { Command::new("cmd") .envs(envs)