@@ -281,7 +281,12 @@ export abstract class AbstractExtensionManagementService extends CommontExtensio
281281
282282 const getInstallExtensionTaskKey = ( extension : IGalleryExtension , profileLocation : URI ) => `${ ExtensionKey . create ( extension ) . toString ( ) } -${ profileLocation . toString ( ) } ` ;
283283 const createInstallExtensionTask = ( manifest : IExtensionManifest , extension : IGalleryExtension | URI , options : InstallExtensionTaskOptions , root : IInstallExtensionTask | undefined ) : void => {
284- this . logService . info ( '======= createInstallExtensionTask' ) ;
284+ this . logService . info ( '======= createInstallExtensionTask ' , extension . ) ;
285+ if ( ! URI . isUri ( extension ) ) {
286+ this . logService . info ( '======= createInstallExtensionTask ' , extension . identifier . id , extension . displayName ) ;
287+ } else {
288+ this . logService . info ( '======= createInstallExtensionTask ' , extension . path ) ;
289+ }
285290 let uninstallTaskToWaitFor ;
286291 if ( ! URI . isUri ( extension ) ) {
287292 this . logService . info ( '=== createInstallExtensionTask === NOT URI ' , extension . identifier . id ) ;
@@ -359,7 +364,7 @@ export abstract class AbstractExtensionManagementService extends CommontExtensio
359364 }
360365 const installed = await this . getInstalled ( undefined , task . options . profileLocation , task . options . productVersion ) ;
361366 const allDepsAndPackExtensionsToInstall = await this . getAllDepsAndPackExtensions ( task . identifier , task . manifest , preferPreRelease , task . options . productVersion , installed ) ;
362- this . logService . info ( 'DEPS ' , allDepsAndPackExtensionsToInstall . length ) ;
367+ this . logService . info ( 'DEPS ' , task . identifier . id , allDepsAndPackExtensionsToInstall . length ) ;
363368 const options : InstallExtensionTaskOptions = { ...task . options , pinned : false , installGivenVersion : false , context : { ...task . options . context , [ EXTENSION_INSTALL_DEP_PACK_CONTEXT ] : true } } ;
364369 for ( const { gallery, manifest } of distinct ( allDepsAndPackExtensionsToInstall , ( { gallery } ) => gallery . identifier . id ) ) {
365370 this . logService . info ( 'DEPS === gallery.identifier.id ' , gallery . identifier . id ) ;
0 commit comments