From f87e5749712d8aacc6c61753e9852b31794e33f6 Mon Sep 17 00:00:00 2001 From: Anthony Kim <62267334+anthonykim1@users.noreply.github.com> Date: Fri, 17 Oct 2025 11:23:24 -0700 Subject: [PATCH] Update src/common/services/CoreService.ts Co-authored-by: Daniel Imms <2193314+Tyriar@users.noreply.github.com> --- 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 b42912aa..4d990bc8 100644 --- a/src/common/services/CoreService.ts +++ b/src/common/services/CoreService.ts @@ -85,7 +85,7 @@ export class CoreService extends Disposable implements ICoreService { return; } this._logService.debug(`sending binary "${data}"`); - this._logService.trace(`sending binary "${data}", and their character codes:`, () => data.split('').map(e => e.charCodeAt(0))); + this._logService.trace(`sending binary (codes)`, () => data.split('').map(e => e.charCodeAt(0))); this._onBinary.fire(data); } }