fix: remove unnecessary console log in new unified diff strategy

This commit is contained in:
Daniel Riccio
2025-01-16 17:15:44 -05:00
parent 3ce2e0c6bf
commit ab1a7a511f

View File

@@ -268,7 +268,6 @@ Your diff here
for (const subHunk of subHunks) { for (const subHunk of subHunks) {
const subContextStr = prepareSearchString(subHunk.changes) const subContextStr = prepareSearchString(subHunk.changes)
console.log(subContextStr)
const subSearchResult = findBestMatch(subContextStr, subHunkResult, 0, this.confidenceThreshold) const subSearchResult = findBestMatch(subContextStr, subHunkResult, 0, this.confidenceThreshold)
if (subSearchResult.confidence >= this.confidenceThreshold) { if (subSearchResult.confidence >= this.confidenceThreshold) {