@@ -189,20 +189,20 @@ export class EditSessionsWorkbenchService extends Disposable implements IEditSes
189
189
private async getAuthenticationSession ( ) {
190
190
// If the user signed in previously and the session is still available, reuse that without prompting the user again
191
191
if ( this . existingSessionId ) {
192
- this . logService . trace ( `Searching for existing authentication session with ID ${ this . existingSessionId } ` ) ;
192
+ this . logService . info ( `Searching for existing authentication session with ID ${ this . existingSessionId } ` ) ;
193
193
const existingSession = await this . getExistingSession ( ) ;
194
194
if ( existingSession ) {
195
- this . logService . trace ( `Found existing authentication session with ID ${ existingSession . session . id } ` ) ;
195
+ this . logService . info ( `Found existing authentication session with ID ${ existingSession . session . id } ` ) ;
196
196
return { sessionId : existingSession . session . id , token : existingSession . session . idToken ?? existingSession . session . accessToken , providerId : existingSession . session . providerId } ;
197
197
}
198
198
}
199
199
200
200
// If settings sync is already enabled, avoid asking again to authenticate
201
201
if ( this . userDataSyncEnablementService . isEnabled ( ) ) {
202
- this . logService . trace ( `Reusing user data sync enablement` ) ;
202
+ this . logService . info ( `Reusing user data sync enablement` ) ;
203
203
const authenticationSessionInfo = await getCurrentAuthenticationSessionInfo ( this . credentialsService , this . productService ) ;
204
204
if ( authenticationSessionInfo !== undefined ) {
205
- this . logService . trace ( `Using current authentication session with ID ${ authenticationSessionInfo . id } ` ) ;
205
+ this . logService . info ( `Using current authentication session with ID ${ authenticationSessionInfo . id } ` ) ;
206
206
this . existingSessionId = authenticationSessionInfo . id ;
207
207
return { sessionId : authenticationSessionInfo . id , token : authenticationSessionInfo . accessToken , providerId : authenticationSessionInfo . providerId } ;
208
208
}
0 commit comments