@@ -118,7 +118,7 @@ export class Remote {
118
118
case "starting" :
119
119
case "stopping" :
120
120
writeEmitter = initWriteEmitterAndTerminal ( ) ;
121
- logger . debug ( `Waiting for ${ workspaceName } ...` ) ;
121
+ logger . info ( `Waiting for ${ workspaceName } ...` ) ;
122
122
workspace = await waitForBuild (
123
123
restClient ,
124
124
writeEmitter ,
@@ -170,7 +170,7 @@ export class Remote {
170
170
) ;
171
171
}
172
172
}
173
- logger . debug (
173
+ logger . info (
174
174
`${ workspaceName } status is now ${ workspace . latest_build . status } ` ,
175
175
) ;
176
176
}
@@ -239,7 +239,7 @@ export class Remote {
239
239
}
240
240
241
241
logger . info ( `Using deployment URL: ${ baseUrlRaw } ` ) ;
242
- logger . debug ( `Using deployment label: ${ parts . label || "n/a" } ` ) ;
242
+ logger . info ( `Using deployment label: ${ parts . label || "n/a" } ` ) ;
243
243
244
244
// We could use the plugin client, but it is possible for the user to log
245
245
// out or log into a different deployment while still connected, which would
@@ -305,7 +305,7 @@ export class Remote {
305
305
// Next is to find the workspace from the URI scheme provided.
306
306
let workspace : Workspace ;
307
307
try {
308
- logger . debug ( `Looking for workspace ${ workspaceName } ...` ) ;
308
+ logger . info ( `Looking for workspace ${ workspaceName } ...` ) ;
309
309
workspace = await workspaceRestClient . getWorkspaceByOwnerAndName (
310
310
parts . username ,
311
311
parts . workspace ,
@@ -393,7 +393,7 @@ export class Remote {
393
393
this . commands . workspace = workspace ;
394
394
395
395
// Pick an agent.
396
- logger . debug ( `Finding agent for ${ workspaceName } ...` ) ;
396
+ logger . info ( `Finding agent for ${ workspaceName } ...` ) ;
397
397
const gotAgent = await this . commands . maybeAskAgent ( workspace , parts . agent ) ;
398
398
if ( ! gotAgent ) {
399
399
// User declined to pick an agent.
@@ -404,7 +404,7 @@ export class Remote {
404
404
logger . info ( `Found agent ${ agent . name } with status ${ agent . status } ` ) ;
405
405
406
406
// Do some janky setting manipulation.
407
- logger . debug ( "Modifying settings..." ) ;
407
+ logger . info ( "Modifying settings..." ) ;
408
408
const remotePlatforms = this . vscodeProposed . workspace
409
409
. getConfiguration ( )
410
410
. get < Record < string , string > > ( "remote.SSH.remotePlatform" , { } ) ;
@@ -504,7 +504,7 @@ export class Remote {
504
504
505
505
// Wait for the agent to connect.
506
506
if ( agent . status === "connecting" ) {
507
- logger . debug ( `Waiting for ${ workspaceName } /${ agent . name } ...` ) ;
507
+ logger . info ( `Waiting for ${ workspaceName } /${ agent . name } ...` ) ;
508
508
await vscode . window . withProgress (
509
509
{
510
510
title : "Waiting for the agent to connect..." ,
@@ -563,7 +563,7 @@ export class Remote {
563
563
// If we didn't write to the SSH config file, connecting would fail with
564
564
// "Host not found".
565
565
try {
566
- logger . debug ( "Updating SSH config..." ) ;
566
+ logger . info ( "Updating SSH config..." ) ;
567
567
await this . updateSSHConfig (
568
568
workspaceRestClient ,
569
569
parts . label ,
0 commit comments