From 4055dc7775e9c298d52ffa11563ab66cccb56c3f Mon Sep 17 00:00:00 2001 From: Andrew Pareles Date: Wed, 9 Apr 2025 17:08:05 -0700 Subject: [PATCH] log --- src/vs/workbench/contrib/void/browser/directoryStrService.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/vs/workbench/contrib/void/browser/directoryStrService.ts b/src/vs/workbench/contrib/void/browser/directoryStrService.ts index 1d1ef381..09fc4f04 100644 --- a/src/vs/workbench/contrib/void/browser/directoryStrService.ts +++ b/src/vs/workbench/contrib/void/browser/directoryStrService.ts @@ -210,6 +210,9 @@ const renderChildren = ( const child = children[i]; const isLast = i === children.length - 1; + console.log('child!!!!', child.uri.fsPath) + + // Create the tree branch symbols const branchSymbol = isLast ? '└── ' : '├── '; const childLine = `${parentPrefix}${branchSymbol}${child.name}${child.isDirectory ? '/' : ''}${child.isSymbolicLink ? ' (symbolic link)' : ''}\n`;