Update src/common/services/CoreService.ts

Co-authored-by: Daniel Imms <2193314+Tyriar@users.noreply.github.com>
This commit is contained in:
Anthony Kim
2025-10-17 11:23:24 -07:00
committed by GitHub
co-authored by Daniel Imms
parent 5269462817
commit f87e574971
+1 -1
View File
@@ -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);
}
}