File tree Expand file tree Collapse file tree
src/vs/platform/userDataSync/common Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ export class UserDataSyncStoreManagementService extends AbstractUserDataSyncStor
8989 @IProductService productService : IProductService ,
9090 @IConfigurationService configurationService : IConfigurationService ,
9191 @IStorageService storageService : IStorageService ,
92+ @IUserDataSyncLogService logService : IUserDataSyncLogService ,
9293 ) {
9394 super ( productService , configurationService , storageService ) ;
9495
@@ -103,6 +104,10 @@ export class UserDataSyncStoreManagementService extends AbstractUserDataSyncStor
103104 } else {
104105 this . storageService . remove ( SYNC_PREVIOUS_STORE , StorageScope . GLOBAL ) ;
105106 }
107+
108+ if ( this . userDataSyncStore ) {
109+ logService . info ( 'Using settings sync service' , this . userDataSyncStore . url . toString ( ) ) ;
110+ }
106111 }
107112
108113 async switch ( type : UserDataSyncStoreType ) : Promise < void > {
You can’t perform that action at this time.
0 commit comments