We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b16754d commit 065bc0fCopy full SHA for 065bc0f
backend/src/tools/batch-str-replace.ts
@@ -592,6 +592,16 @@ async function callBenchifyWithResilience(
592
593
return await withRetry(
594
async () => {
595
+ logger.info(
596
+ {
597
+ fileCount: editedFiles.length,
598
+ filePaths: editedFiles.map((f) => f.path),
599
+ agentStepId: context.agentStepId,
600
+ userInputId: context.userInputId,
601
+ },
602
+ 'Calling Benchify API',
603
+ )
604
+
605
const diff_response = await withTimeout(
606
client.runFixer(editedFiles, {
607
fixes: ['parsing'],
0 commit comments