mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
logs
This commit is contained in:
parent
7f890b946d
commit
3c59428fe8
1 changed files with 4 additions and 0 deletions
|
|
@ -135,7 +135,9 @@ const computeDirectoryTree = async (
|
|||
explorerService: IExplorerService
|
||||
): Promise<VoidDirectoryItem> => {
|
||||
// Fetch children with default sort order
|
||||
console.log('11111!!!!')
|
||||
const eChildren = await eItem.fetchChildren(SortOrder.FilesFirst);
|
||||
console.log('222222!!!!')
|
||||
|
||||
const isGitIgnoredDirectory = eItem.isDirectory && shouldExcludeDirectory(eItem)
|
||||
|
||||
|
|
@ -143,6 +145,8 @@ const computeDirectoryTree = async (
|
|||
const children = !isGitIgnoredDirectory ? await Promise.all(
|
||||
eChildren.map(async c => await computeDirectoryTree(c, explorerService))
|
||||
) : null
|
||||
console.log('333333!!!!!')
|
||||
|
||||
|
||||
// Create our directory item
|
||||
const item: VoidDirectoryItem = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue