Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/common/services/CoreService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,17 @@ export class CoreService extends Disposable implements ICoreService {
}

// Fire onData API
this._logService.debug(`sending data "${data}"`, () => data.split('').map(e => e.charCodeAt(0)));
this._logService.debug(`sending data "${data}"`);
this._logService.trace(`sending data "${data}", and their character codes:`, () => data.split('').map(e => e.charCodeAt(0)));
Comment thread
Tyriar marked this conversation as resolved.
Outdated
this._onData.fire(data);
}

public triggerBinaryEvent(data: string): void {
if (this._optionsService.rawOptions.disableStdin) {
return;
}
this._logService.debug(`sending binary "${data}"`, () => data.split('').map(e => e.charCodeAt(0)));
this._logService.debug(`sending binary "${data}"`);
this._logService.trace(`sending binary "${data}", and their character codes:`, () => data.split('').map(e => e.charCodeAt(0)));
Comment thread
anthonykim1 marked this conversation as resolved.
Outdated
this._onBinary.fire(data);
}
}
Loading