c - How do I log debugging messages of all cURL internal function calls to stdout? -
I am working on an embedded device which uses the library to communicate with other networking devices. I came to:
CURLcode curl_easy_setopt (curl * handle, CURLOPT_VERBOSE, long closed);
But this seems particularly special but I want it to be world-class capable, despite curl handle. Also I found it when watching lib / sendf.h
#define infof (...) Curl_nop_stmt
but I can not find it How to enable / use I just need it that all the internal logs from the curl library will be printed in stdout using the same declaration.
Comments
Post a Comment