Skip to content

Commit 3e63262

Browse files
Log page content in findForUrl function
Added logging for page content retrieval.
1 parent 0c30cc5 commit 3e63262

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/actions/find/src/findForUrl.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ export async function findForUrl(url: string, authContext?: AuthContext): Promis
1414
// - increasing for testing
1515
timeout: 60000,
1616
});
17+
18+
console.log('*** page content');
19+
const content = await page.content();
20+
console.log(content);
21+
1722
console.log(`Scanning ${page.url()}`);
1823

1924
let findings: Finding[] = [];

0 commit comments

Comments
 (0)