chore: stringify sync payload before putting it in the console

This allow to have them displayed by playwright in the python
console.

Co-authored-by: David Larlet <david@larlet.fr>
This commit is contained in:
Yohan Boniface 2024-12-19 17:00:30 +01:00
parent 1996e315e4
commit 36fdb8190c

View file

@ -450,5 +450,5 @@ export class Operations {
}
function debug(...args) {
console.debug('SYNC ⇆', ...args)
console.debug('SYNC ⇆', ...args.map((x) => JSON.stringify(x)))
}