From 5408eafdc1ffdb31684bdaa3b6d07c5772271b3f Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Fri, 9 Feb 2024 22:38:52 +0100 Subject: [PATCH] add tracing debug to pip compile --- backend/windmill-worker/src/python_executor.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/windmill-worker/src/python_executor.rs b/backend/windmill-worker/src/python_executor.rs index 2270c89e97..fc85a72d75 100644 --- a/backend/windmill-worker/src/python_executor.rs +++ b/backend/windmill-worker/src/python_executor.rs @@ -169,6 +169,7 @@ pub async fn pip_compile( if let Some(cert_path) = PIP_INDEX_CERT.as_ref() { args.extend(["--cert", cert_path]); } + tracing::debug!("pip-compile args: {:?}", args); let mut child_cmd = Command::new("pip-compile"); child_cmd