We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f87e574 commit 67cf259Copy full SHA for 67cf259
1 file changed
src/common/services/CoreService.ts
@@ -76,7 +76,7 @@ export class CoreService extends Disposable implements ICoreService {
76
77
// Fire onData API
78
this._logService.debug(`sending data "${data}"`);
79
- 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)));
80
this._onData.fire(data);
81
}
82
0 commit comments