only send codes, not the data when in trace

This commit is contained in:
Anthony Kim
2025-10-17 11:26:34 -07:00
parent f87e574971
commit 67cf25989a
+1 -1
View File
@@ -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);
}