From cdb6da468cc33323955a523738d2e1675aeb5e9a Mon Sep 17 00:00:00 2001 From: Radoslav Gerganov Date: Fri, 10 Oct 2025 13:22:27 +0300 Subject: [PATCH] server : log requests to /v1/completions (#16495) --- tools/server/server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/server/server.cpp b/tools/server/server.cpp index 41ecb279fe..39c950c15d 100644 --- a/tools/server/server.cpp +++ b/tools/server/server.cpp @@ -4368,7 +4368,7 @@ struct server_context { static void log_server_request(const httplib::Request & req, const httplib::Response & res) { // skip GH copilot requests when using default port - if (req.path == "/v1/health" || req.path == "/v1/completions") { + if (req.path == "/v1/health") { return; }