We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parenta1d8e96 commit5269462Copy full SHA for 5269462
src/common/services/CoreService.ts
@@ -75,15 +75,17 @@ export class CoreService extends Disposable implements ICoreService {
75
}
76
77
// Fire onData API
78
-this._logService.debug(`sending data "${data}"`,()=>data.split('').map(e=>e.charCodeAt(0)));
+this._logService.debug(`sending data "${data}"`);
79
+this._logService.trace(`sending data "${data}", and their character codes:`,()=>data.split('').map(e=>e.charCodeAt(0)));
80
this._onData.fire(data);
81
82
83
publictriggerBinaryEvent(data:string):void{
84
if(this._optionsService.rawOptions.disableStdin){
85
return;
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 "${data}", and their character codes:`,()=>data.split('').map(e=>e.charCodeAt(0)));
89
this._onBinary.fire(data);
90
91