From 5175f5cc8ecf6f38e5a96118d5dbdb4646364db7 Mon Sep 17 00:00:00 2001 From: "Tommy D. Rossi" Date: Sun, 25 Jan 2026 14:58:08 +0100 Subject: [PATCH] Update executor.ts --- playwriter/src/executor.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/playwriter/src/executor.ts b/playwriter/src/executor.ts index 1c6b5cd..e054f51 100644 --- a/playwriter/src/executor.ts +++ b/playwriter/src/executor.ts @@ -581,7 +581,10 @@ export class PlaywrightExecutor { return screenshotWithAccessibilityLabels({ ...options, collector: screenshotCollector, - logger: { error: (...args) => { this.logger.error('[playwriter]', ...args) } }, + logger: { + info: (...args) => { this.logger.error('[playwriter]', ...args) }, + error: (...args) => { this.logger.error('[playwriter]', ...args) }, + }, }) } @@ -725,5 +728,3 @@ export class ExecutorManager { }) } } - -