mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
only send codes, not the data when in trace
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user