mirror of
https://github.com/umap-project/umap.git
synced 2025-04-28 19:42:36 +02:00
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:
parent
1996e315e4
commit
36fdb8190c
1 changed files with 1 additions and 1 deletions
|
@ -450,5 +450,5 @@ export class Operations {
|
|||
}
|
||||
|
||||
function debug(...args) {
|
||||
console.debug('SYNC ⇆', ...args)
|
||||
console.debug('SYNC ⇆', ...args.map((x) => JSON.stringify(x)))
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue