Skip to content

Commit

Permalink
Improve logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ljmotta committed Dec 13, 2024
1 parent 40002ab commit d50d02f
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,12 @@ export class VSCodeTestHelper {
}
console.log("DEBUG VS CODE -> SECTION VIEW");
try {
this.workspaceSectionView = await this.sidebarView.getContent().getSection(folderName);
const content = this.sidebarView.getContent();
console.log(`DEBUG VS CODE -> CONTENT: ${content}, FOLDERNAME: ${folderName}`);
this.workspaceSectionView = await content.getSection(folderName);
} catch (error) {
console.log("DEBUG VS CODE -> SECTION VIEW ERROR", error);
throw error;
}

console.log("DEBUG VS CODE -> RETURNING");
Expand Down

0 comments on commit d50d02f

Please sign in to comment.