[project @ 2004-03-28 15:41:50 by bursa]

Disable some excess logging.

svn path=/import/netsurf/; revision=688
This commit is contained in:
James Bursa 2004-03-28 15:41:50 +00:00
parent 4b6e8a9a27
commit 8052ed8c6c
2 changed files with 1 additions and 3 deletions

View File

@ -492,8 +492,7 @@ void content_remove_user(struct content *c,
void content_broadcast(struct content *c, content_msg msg, char *error)
{
struct content_user *user, *next;
LOG(("content %s, message %i", c->url, msg));
c->lock++;
c->lock++;
for (user = c->user_list->next; user != 0; user = next) {
next = user->next; /* user may be destroyed during callback */
if (user->callback != 0)

View File

@ -662,7 +662,6 @@ void html_object_callback(content_msg msg, struct content *object,
assert(0);
}
LOG(("%i active", c->active));
if (c->status == CONTENT_STATUS_READY && c->active == 0) {
/* all objects have arrived */
content_reformat(c, c->available_width, 0);