diff options
author | ANAND ︻气デ═一 <ClobberXD@gmail.com> | 2019-05-12 22:25:15 +0530 |
---|---|---|
committer | Paramat <paramat@users.noreply.github.com> | 2019-05-12 17:55:14 +0100 |
commit | 06a749c3863c3c45ccecb524b82633604ef44a0b (patch) | |
tree | f64cd1ae06e92385927f3b77b0b6f45db22ba533 /src/script | |
parent | 8e3b63bd28579d8f8cb3e7844600504f12b087a5 (diff) | |
download | minetest-06a749c3863c3c45ccecb524b82633604ef44a0b.tar.gz minetest-06a749c3863c3c45ccecb524b82633604ef44a0b.tar.bz2 minetest-06a749c3863c3c45ccecb524b82633604ef44a0b.zip |
Move HTTP request logging to infostream (#8526)
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/lua_api/l_http.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/lua_api/l_http.cpp b/src/script/lua_api/l_http.cpp index ac261cd60..f27f789ad 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 |