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 3e3f05f commit f37431eCopy full SHA for f37431e
packages/core/src/codewhisperer/util/editorContext.ts
@@ -215,12 +215,11 @@ function logSupplementalContext(supplementalContext: CodeWhispererSupplementalCo
215
).trimStart()
216
217
supplementalContext.supplementalContextItems.forEach((context, index) => {
218
+ logString += indent(`\nChunk ${index}:\n`, 4, true)
219
logString += indent(
- `\nChunk ${index}:
220
- Path: ${context.filePath}
221
- Length: ${context.content}
222
- Score: ${context.score}
223
- -----------------------------------------------`,
+ `Path: ${context.filePath}
+ Length: ${context.content.length}
+ Score: ${context.score}`,
224
8,
225
true
226
)
0 commit comments