This repository was archived by the owner on Oct 12, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -231,6 +231,7 @@ export class ServiceChannel extends events.EventEmitter implements cm.IServiceCh
231
231
}
232
232
233
233
public queueConsoleLine ( line : string ) : void {
234
+ line = this . jobInfo . mask ( line ) ;
234
235
if ( line . length > 512 ) {
235
236
line = line . substring ( 0 , 509 ) + '...' ;
236
237
}
@@ -240,6 +241,7 @@ export class ServiceChannel extends events.EventEmitter implements cm.IServiceCh
240
241
}
241
242
242
243
public queueConsoleSection ( line : string ) : void {
244
+ line = this . jobInfo . mask ( line ) ;
243
245
trace . enter ( 'servicechannel:queueConsoleSection: ' + line ) ;
244
246
this . _consoleQueue . section ( line ) ;
245
247
}
@@ -511,11 +513,11 @@ export class WebConsoleQueue extends BaseQueue<string> {
511
513
}
512
514
513
515
public section ( line : string ) : void {
514
- this . push ( '[section] ' + this . _jobInfo . mask ( line ) ) ;
516
+ this . push ( '[section] ' + line ) ;
515
517
}
516
518
517
519
public push ( line : string ) : void {
518
- super . push ( this . _jobInfo . mask ( line ) ) ;
520
+ super . push ( line ) ;
519
521
}
520
522
521
523
public _processQueue ( values : string [ ] , callback : ( err : any ) => void ) {
You can’t perform that action at this time.
0 commit comments