File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/vs/platform/extensionManagement/node Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 44 *--------------------------------------------------------------------------------------------*/
55
66import { getErrorMessage } from '../../../base/common/errors.js' ;
7+ import { isDefined } from '../../../base/common/types.js' ;
78import { TargetPlatform } from '../../extensions/common/extensions.js' ;
89import { createDecorator } from '../../instantiation/common/instantiation.js' ;
910import { ILogService , LogLevel } from '../../log/common/log.js' ;
@@ -97,7 +98,7 @@ export class ExtensionSignatureVerificationService implements IExtensionSignatur
9798
9899 const duration = new Date ( ) . getTime ( ) - startTime ;
99100
100- this . logService . info ( `Extension signature verification result for ${ extensionId } : ${ result . code } . Executed: ${ result . didExecute } . Duration: ${ duration } ms.` ) ;
101+ this . logService . info ( `Extension signature verification result for ${ extensionId } : ${ result . code } . ${ isDefined ( result . internalCode ) ? `Internal Code: ${ result . internalCode } . ` : '' } Executed: ${ result . didExecute } . Duration: ${ duration } ms.` ) ;
101102 this . logService . trace ( `Extension signature verification output for ${ extensionId } :\n${ result . output } ` ) ;
102103
103104 type ExtensionSignatureVerificationClassification = {
You can’t perform that action at this time.
0 commit comments