@@ -1302,7 +1302,7 @@ export class TerminalTaskSystem extends Disposable implements ITaskSystem {
1302
1302
reconnectedTerminal . waitOnExit = getWaitOnExitValue ( task . command . presentation , task . configurationProperties ) ;
1303
1303
}
1304
1304
reconnectedTerminal . onDisposed ( ( terminal ) => this . _fireTaskEvent ( { kind : TaskEventKind . Terminated , exitReason : terminal . exitReason , taskId : task . getRecentlyUsedKey ( ) } ) ) ;
1305
- this . _logService . info ( 'reconnected to task and terminal' , task . _id ) ;
1305
+ this . _logService . trace ( 'reconnected to task and terminal' , task . _id ) ;
1306
1306
return reconnectedTerminal ;
1307
1307
}
1308
1308
if ( group ) {
@@ -1330,20 +1330,20 @@ export class TerminalTaskSystem extends Disposable implements ITaskSystem {
1330
1330
1331
1331
private _reconnectToTerminals ( ) : void {
1332
1332
if ( this . _hasReconnected ) {
1333
- this . _logService . info ( `Already reconnected, to ${ this . _reconnectedTerminals ?. length } terminals so returning` ) ;
1333
+ this . _logService . trace ( `Already reconnected, to ${ this . _reconnectedTerminals ?. length } terminals so returning` ) ;
1334
1334
return ;
1335
1335
}
1336
1336
this . _reconnectedTerminals = this . _terminalService . getReconnectedTerminals ( ReconnectionType ) ?. filter ( t => ! t . isDisposed ) ;
1337
- this . _logService . info ( `Attempting reconnection of ${ this . _reconnectedTerminals ?. length } terminals` ) ;
1337
+ this . _logService . trace ( `Attempting reconnection of ${ this . _reconnectedTerminals ?. length } terminals` ) ;
1338
1338
if ( ! this . _reconnectedTerminals ?. length ) {
1339
- this . _logService . info ( `No terminals to reconnect to so returning` ) ;
1339
+ this . _logService . trace ( `No terminals to reconnect to so returning` ) ;
1340
1340
this . _hasReconnected = true ;
1341
1341
return ;
1342
1342
} else {
1343
1343
for ( const terminal of this . _reconnectedTerminals ) {
1344
1344
const task = terminal . shellLaunchConfig . attachPersistentProcess ?. reconnectionProperties ?. data as IReconnectionTaskData ;
1345
1345
if ( this . _logService . getLevel ( ) <= LogLevel . Trace ) {
1346
- this . _logService . info ( `Reconnecting to task: ${ JSON . stringify ( task ) } ` ) ;
1346
+ this . _logService . trace ( `Reconnecting to task: ${ JSON . stringify ( task ) } ` ) ;
1347
1347
}
1348
1348
if ( ! task ) {
1349
1349
continue ;
0 commit comments