@xterm/xterm 5.6.0-beta.130 → 5.6.0-beta.132

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@xterm/xterm",
3
3
  "description": "Full xterm terminal, in your browser",
4
- "version": "5.6.0-beta.130",
4
+ "version": "5.6.0-beta.132",
5
5
  "main": "lib/xterm.js",
6
6
  "module": "lib/xterm.mjs",
7
7
  "style": "css/xterm.css",
@@ -108,5 +108,5 @@
108
108
  "ws": "^8.2.3",
109
109
  "xterm-benchmark": "^0.3.1"
110
110
  },
111
- "commit": "f4baddaaf118dd2d537187182fa7db8776cd546f"
111
+ "commit": "95cc31566a2db213cf34ad657644f10867cc7564"
112
112
  }
@@ -75,7 +75,8 @@ export class CoreService extends Disposable implements ICoreService {
75
75
  }
76
76
 
77
77
  // Fire onData API
78
- this._logService.debug(`sending data "${data}"`, () => data.split('').map(e => e.charCodeAt(0)));
78
+ this._logService.debug(`sending data "${data}"`);
79
+ this._logService.trace(`sending data (codes)`, () => data.split('').map(e => e.charCodeAt(0)));
79
80
  this._onData.fire(data);
80
81
  }
81
82
 
@@ -83,7 +84,8 @@ export class CoreService extends Disposable implements ICoreService {
83
84
  if (this._optionsService.rawOptions.disableStdin) {
84
85
  return;
85
86
  }
86
- this._logService.debug(`sending binary "${data}"`, () => data.split('').map(e => e.charCodeAt(0)));
87
+ this._logService.debug(`sending binary "${data}"`);
88
+ this._logService.trace(`sending binary (codes)`, () => data.split('').map(e => e.charCodeAt(0)));
87
89
  this._onBinary.fire(data);
88
90
  }
89
91
  }