From 67cf25989a08d7d6b74f96f4eb98765c920c714c Mon Sep 17 00:00:00 2001 From: Anthony Kim Date: Fri, 17 Oct 2025 11:26:34 -0700 Subject: [PATCH] only send codes, not the data when in trace --- src/common/services/CoreService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/services/CoreService.ts b/src/common/services/CoreService.ts index 4d990bc8..5d3eccb8 100644 --- a/src/common/services/CoreService.ts +++ b/src/common/services/CoreService.ts @@ -76,7 +76,7 @@ export class CoreService extends Disposable implements ICoreService { // Fire onData API this._logService.debug(`sending data "${data}"`); - this._logService.trace(`sending data "${data}", and their character codes:`, () => data.split('').map(e => e.charCodeAt(0))); + this._logService.trace(`sending data (codes)`, () => data.split('').map(e => e.charCodeAt(0))); this._onData.fire(data); }