Lose unnecessary logging

svn path=/trunk/netsurf/; revision=12993
This commit is contained in:
John Mark Bell 2011-10-07 22:31:52 +00:00
parent 2f60ecea61
commit 59fdc29e66

View File

@ -890,8 +890,6 @@ static nserror browser_window_favicon_callback(hlcache_handle *c,
switch (event->type) {
case CONTENT_MSG_DONE:
LOG(("favicon contents for %p done!", bw));
if (bw->current_favicon != NULL) {
content_status status =
content_get_status(bw->current_favicon);
@ -906,9 +904,6 @@ static nserror browser_window_favicon_callback(hlcache_handle *c,
bw->current_favicon = c;
bw->loading_favicon = NULL;
LOG(("Content ended up with mime type of '%s'",
lwc_string_data((content_get_mime_type(c)))));
/* content_get_bitmap on the hlcache_handle should give
* us the favicon bitmap at this point
*/
@ -955,7 +950,6 @@ static nserror browser_window_favicon_callback(hlcache_handle *c,
break;
default:
LOG(("favicon unhandled event"));
break;
}
return NSERROR_OK;