From ee0e5033ec4a5e0210e2c8e88b6cb764a8042566 Mon Sep 17 00:00:00 2001 From: Praveen Thirumurugan Date: Sat, 18 Oct 2025 02:10:03 +0530 Subject: [PATCH] refactor: remove redundant provider information from log data in proxy request --- proxy.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/proxy.ts b/proxy.ts index 39ab90d..aa78931 100644 --- a/proxy.ts +++ b/proxy.ts @@ -189,8 +189,7 @@ const server = http.createServer(async (req, res) => { request_body: requestJson, response_body: responseBody, response_status: upstreamRes.status, - provider_url: UPSTREAM_URL, - provider: "Upstream", + provider_url: UPSTREAM_URL }; logToPG(logData).catch(err => console.error("PG log error:", err));