mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-25 15:59:36 +03:00
Revert r10650/1. We no longer require noisy fetch/cache logging.
svn path=/trunk/netsurf/; revision=11223
This commit is contained in:
parent
77ea8a8d63
commit
3fcb02afa1
@ -51,7 +51,7 @@
|
||||
#include "utils/ring.h"
|
||||
|
||||
/* Define this to turn on verbose fetch logging */
|
||||
#define DEBUG_FETCH_VERBOSE
|
||||
#undef DEBUG_FETCH_VERBOSE
|
||||
|
||||
bool fetch_active; /**< Fetches in progress, please call fetch_poll(). */
|
||||
|
||||
|
@ -180,11 +180,8 @@ void fetch_curl_register(void)
|
||||
SETOPT(CURLOPT_VERBOSE, 0);
|
||||
}
|
||||
SETOPT(CURLOPT_ERRORBUFFER, fetch_error_buffer);
|
||||
/* jmb -- don't suppress curl debug while we're
|
||||
* investigating low-level cache crashes
|
||||
* if (option_suppress_curl_debug)
|
||||
* SETOPT(CURLOPT_DEBUGFUNCTION, fetch_curl_ignore_debug);
|
||||
*/
|
||||
if (option_suppress_curl_debug)
|
||||
SETOPT(CURLOPT_DEBUGFUNCTION, fetch_curl_ignore_debug);
|
||||
SETOPT(CURLOPT_WRITEFUNCTION, fetch_curl_data);
|
||||
SETOPT(CURLOPT_HEADERFUNCTION, fetch_curl_header);
|
||||
SETOPT(CURLOPT_PROGRESSFUNCTION, fetch_curl_progress);
|
||||
|
@ -36,7 +36,7 @@
|
||||
#include "utils/utils.h"
|
||||
|
||||
/** Define to enable tracing of llcache operations. */
|
||||
#define LLCACHE_TRACE
|
||||
#undef LLCACHE_TRACE
|
||||
|
||||
/** State of a low-level cache object fetch */
|
||||
typedef enum {
|
||||
|
Loading…
Reference in New Issue
Block a user