This is an automated email from the ASF dual-hosted git repository.

ashishtiwari pushed a commit to branch Revolyssup-patch-1
in repository https://gitbox.apache.org/repos/asf/apisix.git

commit 881a89da7b9b03ecc93809711415eecd773be9c9
Author: Ashish Tiwari <ashishjaitiwari15112...@gmail.com>
AuthorDate: Mon Jun 23 09:52:50 2025 +0530

    refactor: change log level to debug to avoid unnecessary logs
---
 apisix/core/ctx.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apisix/core/ctx.lua b/apisix/core/ctx.lua
index 561c1931a..e40ff8bb7 100644
--- a/apisix/core/ctx.lua
+++ b/apisix/core/ctx.lua
@@ -224,7 +224,7 @@ do
         __index = function(t, key)
             local cached = t._cache[key]
             if cached ~= nil then
-                log.info("serving ctx value from cache for key: ", key)
+                log.debug("serving ctx value from cache for key: ", key)
                 return cached
             end
 

Reply via email to