# HG changeset patch # User Kim Alvefur # Date 1699739014 -3600 # Node ID 83a2fb6df746bae1af7f4b4d29d32458d6702cb6 # Parent 991fb904fa49ee45132c6ff3e6767d9ef208c38f mod_storage_s3: Fix logging Seems request and response loggers is only a thing on http requests and responses from net.http.server, not net.http requests. diff -r 991fb904fa49 -r 83a2fb6df746 mod_storage_s3/mod_storage_s3.lua --- a/mod_storage_s3/mod_storage_s3.lua Sat Nov 11 22:32:18 2023 +0100 +++ b/mod_storage_s3/mod_storage_s3.lua Sat Nov 11 22:43:34 2023 +0100 @@ -144,7 +144,7 @@ elseif content_type == "application/x-www-form-urlencoded" then return httputil.formdecode(response.body); else - response.log("warn", "Unknown response data type %s", content_type); + module:log("warn", "Unknown response data type %s", content_type); return response.body; end end