diff options
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 |