From 06a749c3863c3c45ccecb524b82633604ef44a0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?ANAND=20=EF=B8=BB=E6=B0=94=E3=83=87=E2=95=90=E4=B8=80?= Date: Sun, 12 May 2019 22:25:15 +0530 Subject: [PATCH] Move HTTP request logging to infostream (#8526) --- src/script/lua_api/l_http.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/lua_api/l_http.cpp b/src/script/lua_api/l_http.cpp index ac261cd6..f27f789a 100644 --- a/src/script/lua_api/l_http.cpp +++ b/src/script/lua_api/l_http.cpp @@ -94,7 +94,7 @@ int ModApiHttp::l_http_fetch_async(lua_State *L) HTTPFetchRequest req; read_http_fetch_request(L, req); - actionstream << "Mod performs HTTP request with URL " << req.url << std::endl; + infostream << "Mod performs HTTP request with URL " << req.url << std::endl; httpfetch_async(req); // Convert handle to hex string since lua can't handle 64-bit integers