From aaef3dc5f648cfcf1b47d27fa2f86aed5b76f41e Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Fri, 16 May 2025 12:05:06 +0200 Subject: [PATCH] half the text --- tracker/tracker/src/main/app/index.ts | 7 +++++++ 1 file changed, 7 insertions(+) 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 }) } })