From 760b1cbeb71d9d7e112e7b3f09f3218a5b3fa93c Mon Sep 17 00:00:00 2001 From: wiaamm Date: Sun, 6 Jul 2025 16:59:07 +0300 Subject: [PATCH] remove debug messages --- attachments/kong/nano_ffi.lua | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/attachments/kong/nano_ffi.lua b/attachments/kong/nano_ffi.lua index fb65e74..3f4a3f8 100755 --- a/attachments/kong/nano_ffi.lua +++ b/attachments/kong/nano_ffi.lua @@ -264,23 +264,11 @@ function nano.handle_start_transaction() local listening_ip = ngx.var.server_addr or "127.0.0.1" local listening_port = ngx.var.server_port or 80 - kong.log.err("The host is: ", host) - kong.log.err("The scheme is: ", scheme) - kong.log.err("The method is: ", method) - kong.log.err("The uri is: ", uri) - kong.log.err("The client IP is: ", client_ip) - kong.log.err("The client port is: ", client_port) - kong.log.err("The listening IP is: ", listening_ip) - kong.log.err("The listening port is: ", listening_port) - - - -- Call the C function with extracted metadata local metadata = nano_attachment.create_http_metadata( scheme, method, host, listening_ip, tonumber(listening_port) or 0, uri, client_ip, tonumber(client_port) or 0, "", "" ) - -- Track metadata for cleanup table.insert(nano.allocated_metadata, metadata) collectgarbage("stop")