diff --git a/tracker/tracker/src/main/app/index.ts b/tracker/tracker/src/main/app/index.ts index 54ec9d813..a22fad0d4 100644 --- a/tracker/tracker/src/main/app/index.ts +++ b/tracker/tracker/src/main/app/index.ts @@ -770,6 +770,13 @@ export default class App { this.debug.error('Openreplay compression error:', err) this.worker?.postMessage({ type: 'uncompressed', batch: batch }) } else { + this.debug.info( + 'OpenReplay: compressed batch size', + batchSize, + '->', + result.byteLength, + 'bytes', + ) this.worker?.postMessage({ type: 'compressed', batch: result }) } })