summaryrefslogtreecommitdiff
path: root/content/fetch.c
diff options
context:
space:
mode:
Diffstat (limited to 'content/fetch.c')
-rw-r--r--content/fetch.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/content/fetch.c b/content/fetch.c
index 666b9e30e..d6e98e1f4 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -70,7 +70,7 @@
/** Verbose fetcher logging */
#ifdef DEBUG_FETCH_VERBOSE
-#define FETCH_LOG(x...) debug_board_printf(x); debug_board_printf("\n");
+#define FETCH_LOG(x...) LOG(x)
#else
#define FETCH_LOG(x...)
#endif
@@ -300,12 +300,14 @@ nserror fetcher_init(void)
return ret;
}
#endif
+
#ifdef _TARGET_IS_KOLIBRIOS
ret = fetch_httplib_kolibri_register();
if (ret != NSERROR_OK) {
return ret;
}
#endif
+
ret = fetch_data_register();
if (ret != NSERROR_OK) {
return ret;
@@ -593,6 +595,7 @@ fetch_start(nsurl *url,
/* exported interface documented in content/fetch.h */
void fetch_abort(struct fetch *f)
{
+ debug_board_printf("---- fetch.c : fetch_abort for fetch 0x%x\n", f);
assert(f);
FETCH_LOG("fetch %p, fetcher %p, url '%s'", f, f->fetcher_handle,
nsurl_access(f->url));
@@ -773,7 +776,7 @@ void fetch_remove_from_queues(struct fetch *fetch)
/* exported interface documented in content/fetch.h */
void fetch_set_http_code(struct fetch *fetch, long http_code)
{
- FETCH_LOG("Setting HTTP code to %ld", http_code);
+ FETCH_LOG("Setting HTTP code to %ld for fetch 0x%x", http_code, fetch);
fetch->http_code = http_code;
}