fix: format

This commit is contained in:
sususu
2025-12-08 11:01:10 +08:00
parent 909b5ad37f
commit cf93128a96

View File

@@ -64,7 +64,9 @@ class ClaudeCodeValidator {
const rawText = typeof entry?.text === 'string' ? entry.text : ''
const { bestScore } = bestSimilarityByTemplates(rawText)
if (bestScore < threshold) {
logger.error(`Claude system prompt similarity below threshold: score=${bestScore.toFixed(4)}, threshold=${threshold}`)
logger.error(
`Claude system prompt similarity below threshold: score=${bestScore.toFixed(4)}, threshold=${threshold}`
)
logger.warn(`Claude system prompt detail: ${rawText}`)
return false
}