From daecbe6a6d905de3131454782bb700d370075b95 Mon Sep 17 00:00:00 2001 From: Ansgar Mertens Date: Thu, 28 Sep 2023 12:47:31 +0200 Subject: [PATCH] wip --- packages/@cdktf/commons/src/debug.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/@cdktf/commons/src/debug.ts b/packages/@cdktf/commons/src/debug.ts index 1f12f3d73c..11aa37505d 100644 --- a/packages/@cdktf/commons/src/debug.ts +++ b/packages/@cdktf/commons/src/debug.ts @@ -391,7 +391,9 @@ export async function collectDebugInformation() { switch (language) { case "python": { + console.log("about to get python version") const python = getPythonVersion(); + console.log("got python version") const pip = getPipVersion(); const pipenv = getPipenvVersion(); debugOutput["python"] = (await python) ?? null;