From 55ed73bf02ba939e639beb61ddd9fbb0bd09d822 Mon Sep 17 00:00:00 2001 From: Richard Wilson Date: Fri, 1 Dec 2006 21:13:27 +0000 Subject: Lose debug. svn path=/trunk/netsurf/; revision=3088 --- content/urldb.c | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'content') diff --git a/content/urldb.c b/content/urldb.c index f3aba584f..a3012e871 100644 --- a/content/urldb.c +++ b/content/urldb.c @@ -756,13 +756,6 @@ bool urldb_add_url(const char *url) url_destroy_components(&components); return false; } - - LOG(("Scheme: %s\nHost: %s\nPort: %i\nPath: %s\nURL: %s", - components.scheme, - host, - port, - components.path, - url)); /* Get path entry */ p = urldb_add_path(components.scheme, port, h, @@ -1775,13 +1768,6 @@ struct path_data *urldb_find_url(const char *url) port = atoi(colon + 1); } - LOG(("Scheme: %s\nHost: %s\nPort: %i\nPath: %s\nURL: %s", - components.scheme, - host, - port, - components.path, - url)); - /* file urls have no host, so manufacture one */ if (strcasecmp(components.scheme, "file") == 0) host = "localhost"; @@ -1789,11 +1775,9 @@ struct path_data *urldb_find_url(const char *url) tree = urldb_get_search_tree(host); h = urldb_search_find(tree, host); if (!h) { - LOG(("Failed to find host")); url_destroy_components(&components); return NULL; } - LOG(("Found host")); /* generate plq */ if (components.path) -- cgit v1.2.3