server : log requests to /v1/completions (#16495)

This commit is contained in:
Radoslav Gerganov 2025-10-10 13:22:27 +03:00 committed by GitHub
parent 6d69ab3f26
commit cdb6da468c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}