File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -75,15 +75,17 @@ export class CoreService extends Disposable implements ICoreService {
7575 }
7676
7777 // 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 "${ data } ", and their character codes:` , ( ) => data . split ( '' ) . map ( e => e . charCodeAt ( 0 ) ) ) ;
7980 this . _onData . fire ( data ) ;
8081 }
8182
8283 public triggerBinaryEvent ( data : string ) : void {
8384 if ( this . _optionsService . rawOptions . disableStdin ) {
8485 return ;
8586 }
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 ) ) ) ;
8789 this . _onBinary . fire ( data ) ;
8890 }
8991}
You can’t perform that action at this time.
0 commit comments