Skip to content

Commit f985442

Browse files
author
David Hasani
committed
add log
1 parent ce8992d commit f985442

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/src/codewhisperer/service/transformByQ/transformApiHandler.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,11 +348,11 @@ export async function zipCode({ dependenciesFolder, humanInTheLoopFlag, modulePa
348348
let sourceFilesSize = 0
349349
for (const file of sourceFiles) {
350350
if ((await fs.stat(file)).isDirectory()) {
351-
getLogger().info(`CodeTransformation: Skipping directory, likely a symlink`)
351+
getLogger().info(`CodeTransformation: Skipping directory: ${file}, likely a symlink`)
352352
continue
353353
}
354354
if (isExcludedFile(file)) {
355-
getLogger().info(`CodeTransformation: Skipping excluded file`)
355+
getLogger().info(`CodeTransformation: Skipping excluded file: ${file}`)
356356
continue
357357
}
358358
const relativePath = path.relative(modulePath, file)

0 commit comments

Comments
 (0)