From: James O'Leary Date: Fri, 20 Mar 2026 17:23:18 +0000 (-0700) Subject: common : fix typo in debug log ('extracft' -> 'extract') (#20807) X-Git-Tag: upstream/0.0.8611~154 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=149b2493c022c621d16154b6d261769da35e9e00;p=pkg%2Fggml%2Fsources%2Fllama.cpp common : fix typo in debug log ('extracft' -> 'extract') (#20807) --- diff --git a/common/chat-diff-analyzer.cpp b/common/chat-diff-analyzer.cpp index 8b1b59b69..4b827c9ae 100644 --- a/common/chat-diff-analyzer.cpp +++ b/common/chat-diff-analyzer.cpp @@ -409,7 +409,7 @@ void analyze_reasoning::compare_reasoning_scope() { if (result.result.success()) { end = trim_trailing_whitespace(result.tags["post"]); } 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; } }