Skip to content

Commit 8eae088

Browse files
committed
debug: Remove logging
1 parent 183b573 commit 8eae088

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ import playwright from 'playwright';
44

55
export async function findForUrl(url: string, sessionStatePath?: string): Promise<Finding[]> {
66
const browser = await playwright.chromium.launch({ headless: true, executablePath: process.env.CI ? '/usr/bin/google-chrome' : undefined });
7-
if (sessionStatePath) {
8-
console.log(`Using session state from ${sessionStatePath}`);
9-
}
107
const context = await browser.newContext({ storageState: !!sessionStatePath ? sessionStatePath : undefined });
118
const page = await context.newPage();
129
await page.goto(url);

0 commit comments

Comments
 (0)