File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -130,10 +130,18 @@ export class Client {
130
130
if ( this . noConnectionEstablishedBefore ) {
131
131
this . noConnectionEstablishedBefore = false ;
132
132
await this . events . onDidConnectFirstTimeEventEmitter . fire ( ) ;
133
+ await Promise . all ( [
134
+ this . provideLogChannel ( ) ,
135
+ this . provideGTestChannel ( )
136
+ ] ) ;
133
137
}
134
138
if ( ! this . isConnectionEstablished ( ) ) {
135
139
messages . showInfoMessage ( messages . successfullyConnected ) ;
136
140
logger . info ( 'Successfully connected to server' ) ;
141
+ await Promise . all ( [
142
+ this . provideLogChannel ( ) ,
143
+ this . provideGTestChannel ( )
144
+ ] ) ;
137
145
}
138
146
if ( this . newClient || ! response . getLinked ( ) ) {
139
147
await Promise . all ( [
@@ -238,7 +246,6 @@ export class Client {
238
246
239
247
private async writeGTestLog ( responseAny : any ) : Promise < void > {
240
248
const gtestEntry = responseAny as LogEntry ;
241
- utbotUI . channels ( ) . outputGTestChannel . show ( true ) ;
242
249
utbotUI . channels ( ) . outputGTestChannel . appendLine ( gtestEntry . getMessage ( ) ) ;
243
250
}
244
251
You can’t perform that action at this time.
0 commit comments