mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
Remove logging from mac's http fetches
This commit is contained in:
parent
099c1cc48b
commit
6bb8e75448
@ -77,7 +77,7 @@ fn write_fn(contents byteptr, size, nmemb int, _mem *MemoryStruct) int {
|
|||||||
struct C.curl_slist { }
|
struct C.curl_slist { }
|
||||||
|
|
||||||
fn (req &Request) do() Response {
|
fn (req &Request) do() Response {
|
||||||
println('req.do() mac/linux url="$req.url" data="$req.data"')
|
//println('req.do() mac/linux url="$req.url" data="$req.data"')
|
||||||
// println('req.do() url="$req.url"')
|
// println('req.do() url="$req.url"')
|
||||||
/*
|
/*
|
||||||
mut resp := Response {
|
mut resp := Response {
|
||||||
@ -137,9 +137,9 @@ fn (req &Request) do() Response {
|
|||||||
C.curl_easy_setopt(curl, CURLOPT_HTTPHEADER, hlist)
|
C.curl_easy_setopt(curl, CURLOPT_HTTPHEADER, hlist)
|
||||||
C.curl_easy_setopt(curl, CURLOPT_TCP_KEEPALIVE, 1)
|
C.curl_easy_setopt(curl, CURLOPT_TCP_KEEPALIVE, 1)
|
||||||
C.curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1)
|
C.curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1)
|
||||||
println('bef easy()')
|
//println('bef easy()')
|
||||||
res := C.curl_easy_perform(curl)
|
res := C.curl_easy_perform(curl)
|
||||||
println('after easy()')
|
//println('after easy()')
|
||||||
# if (res != CURLE_OK )
|
# if (res != CURLE_OK )
|
||||||
{
|
{
|
||||||
err := C.curl_easy_strerror(res)
|
err := C.curl_easy_strerror(res)
|
||||||
@ -184,7 +184,7 @@ fn (req &Request) do() Response {
|
|||||||
// j.println('headers=')
|
// j.println('headers=')
|
||||||
// j.println(hchunk.strings)
|
// j.println(hchunk.strings)
|
||||||
C.curl_easy_cleanup(curl)
|
C.curl_easy_cleanup(curl)
|
||||||
println('end of req.do() url="$req.url"')
|
//println('end of req.do() url="$req.url"')
|
||||||
return Response {
|
return Response {
|
||||||
body: body
|
body: body
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user