Skip to content

Commit 67cf259

Browse files
committed
only send codes, not the data when in trace
1 parent f87e574 commit 67cf259

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/common/services/CoreService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export class CoreService extends Disposable implements ICoreService {
7676

7777
// Fire onData API
7878
this._logService.debug(`sending data "${data}"`);
79-
this._logService.trace(`sending data "${data}", and their character codes:`, () => data.split('').map(e => e.charCodeAt(0)));
79+
this._logService.trace(`sending data (codes)`, () => data.split('').map(e => e.charCodeAt(0)));
8080
this._onData.fire(data);
8181
}
8282

0 commit comments

Comments
 (0)