File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,9 @@ export class Remote {
7474 return
7575 }
7676
77+ this . storage . writeToCoderOutputChannel ( `Using deployment URL: ${ baseUrlRaw } ` )
78+ this . storage . writeToCoderOutputChannel ( `Using deployment label: ${ parts . label || "n/a" } ` )
79+
7780 // We could use the plugin client, but it is possible for the user to log
7881 // out or log into a different deployment while still connected, which would
7982 // break this connection. We could force close the remote session or
Original file line number Diff line number Diff line change @@ -119,8 +119,6 @@ export class Storage {
119119 */
120120 public async fetchBinary ( restClient : Api , label : string ) : Promise < string > {
121121 const baseUrl = restClient . getAxiosInstance ( ) . defaults . baseURL
122- this . output . appendLine ( `Using deployment URL: ${ baseUrl } ` )
123- this . output . appendLine ( `Using deployment label: ${ label || "n/a" } ` )
124122
125123 // Settings can be undefined when set to their defaults (true in this case),
126124 // so explicitly check against false.
You can’t perform that action at this time.
0 commit comments