Skip to content

Commit 0c32b99

Browse files
committed
fix
1 parent 1b788a3 commit 0c32b99

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib/utils.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -886,6 +886,7 @@ export async function startSSEListener(ctx: Context) {
886886
if (lines.length < 1 ) {
887887
return;
888888
}
889+
ctx.log.debug(`CSSReport: ${JSON.stringify(lines)}`);
889890
ctx.log.info(chalk.green(lines[0]));
890891

891892
let isWarningSection = false;
@@ -1069,7 +1070,7 @@ export async function validateCSSSelectors(
10691070
}
10701071

10711072
try {
1072-
1073+
logger.debug(`selector to validate: ${baseSelector}`);
10731074
const elementExists = await page.evaluate(({ selectorValue }: { selectorValue: string }) => {
10741075
try {
10751076
const elements = document.querySelectorAll(selectorValue);

0 commit comments

Comments
 (0)