We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acfdb61 commit d52e416Copy full SHA for d52e416
packages/core/src/shared/sam/cli/samCliLocalInvoke.ts
@@ -232,8 +232,10 @@ export class SamCliLocalInvokeInvocation {
232
233
public async execute(timeout?: Timeout): Promise<ChildProcess> {
234
await this.validate()
235
-
+ const start = Date.now()
236
const sam = await this.config.getOrDetectSamCli()
237
+ // eslint-disable-next-line aws-toolkits/no-console-log
238
+ console.log('getOrDetect took %O seconds', (Date.now() - start) / 1000)
239
if (!sam.path) {
240
getLogger().warn('SAM CLI not found and not configured')
241
} else if (sam.autoDetected) {
0 commit comments