From 2cdba6024c53bdb6f9c4dad98ff1bdb0e184252c Mon Sep 17 00:00:00 2001 From: Alexander Polyakov Date: Thu, 27 Nov 2025 12:37:46 +0300 Subject: [PATCH] [k2] small fix to CURL error logs --- runtime-light/stdlib/curl/curl-easy-functions.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime-light/stdlib/curl/curl-easy-functions.h b/runtime-light/stdlib/curl/curl-easy-functions.h index bacead45d4..5f72b04c2f 100644 --- a/runtime-light/stdlib/curl/curl-easy-functions.h +++ b/runtime-light/stdlib/curl/curl-easy-functions.h @@ -383,7 +383,7 @@ inline auto f$curl_setopt(kphp::web::curl::easy_type easy_id, int64_t option, co return true; } case kphp::web::curl::CURLOPT::USERPWD: { - kphp::log::error("Unsupported CURL option"); + kphp::log::error("unsupported CURL option"); } default: easy_ctx.set_errno(kphp::web::curl::CURLE::UNKNOWN_OPTION); @@ -581,7 +581,7 @@ inline auto f$curl_getinfo(kphp::web::curl::easy_type easy_id, int64_t option = co_return v->second.to_mixed(); } case kphp::web::curl::CURLINFO::NUM_CONNECTS: { - kphp::log::error("Unsupported CURL info option"); + kphp::log::error("unsupported CURL info option"); } default: co_return false;