Skip to content

Commit 166196d

Browse files
committed
add additional logs
1 parent c37ad7d commit 166196d

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/managers/poetry/poetryUtils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ export async function getPoetryVersion(poetry: string): Promise<string | undefin
216216
// Handle both formats:
217217
// Old: "Poetry version 1.5.1"
218218
// New: "Poetry (version 2.1.3)"
219+
traceInfo(`Poetry version output: ${stdout.trim()}`);
219220
const match = stdout.match(/Poetry (?:version|[\(\s]+version[\s\)]+)([0-9]+\.[0-9]+\.[0-9]+)/i);
220221
return match ? match[1] : undefined;
221222
} catch {

0 commit comments

Comments
 (0)