feat: log screencast error

This commit is contained in:
karishmas6
2024-11-29 22:10:10 +05:30
parent 14d9679324
commit 0c4f860b14

View File

@@ -244,7 +244,7 @@ export class RemoteBrowser {
} }
await this.client.send('Page.screencastFrameAck', { sessionId: sessionId }); await this.client.send('Page.screencastFrameAck', { sessionId: sessionId });
} catch (e) { } catch (e) {
logger.log('error', e); logger.log('error', `Screencast error: ${e.message}`);
} }
}, 100); }, 100);
}); });