common : fix typo in debug log ('extracft' -> 'extract') (#20807)

This commit is contained in:
James O'Leary
2026-03-20 10:23:18 -07:00
committed by GitHub
parent b31b30f31d
commit 149b2493c0
+1 -1
View File
@@ -409,7 +409,7 @@ void analyze_reasoning::compare_reasoning_scope() {
if (result.result.success()) { if (result.result.success()) {
end = trim_trailing_whitespace(result.tags["post"]); end = trim_trailing_whitespace(result.tags["post"]);
} else { } else {
LOG_DBG(ANSI_ORANGE "%s: Unable to extracft reasoning markers, falling back to reasoning = NONE\n" ANSI_RESET, __func__); LOG_DBG(ANSI_ORANGE "%s: Unable to extract reasoning markers, falling back to reasoning = NONE\n" ANSI_RESET, __func__);
mode = reasoning_mode::NONE; mode = reasoning_mode::NONE;
} }
} }