diff --git a/src/validators/clients/claudeCodeValidator.js b/src/validators/clients/claudeCodeValidator.js index af155f1f..2a49fca2 100644 --- a/src/validators/clients/claudeCodeValidator.js +++ b/src/validators/clients/claudeCodeValidator.js @@ -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 }