summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-03-18 23:48:12 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-03-18 23:48:12 +0000
commitf261e4426a017d01ae0203dfd45d6931b1a5fed4 (patch)
tree394bb29040a1fedcbb80af01ca2b50ba4316ae05 /content
parent947ab0dcd2bc3840da5db789862a75510c48106f (diff)
downloadnetsurf-f261e4426a017d01ae0203dfd45d6931b1a5fed4.tar.gz
netsurf-f261e4426a017d01ae0203dfd45d6931b1a5fed4.tar.bz2
Lose noisy logging
svn path=/trunk/netsurf/; revision=3213
Diffstat (limited to 'content')
-rw-r--r--content/content.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/content.c b/content/content.c
index 5b7d783e3..d4a8f3227 100644
--- a/content/content.c
+++ b/content/content.c
@@ -947,7 +947,7 @@ bool content_redraw(struct content *c, int x, int y,
float scale, unsigned long background_colour)
{
assert(c != 0);
- LOG(("%p %s", c, c->url));
+// LOG(("%p %s", c, c->url));
if (c->locked)
/* not safe to attempt redraw */
return true;
@@ -976,7 +976,7 @@ bool content_redraw_tiled(struct content *c, int x, int y,
assert(c != 0);
- LOG(("%p %s", c, c->url));
+// LOG(("%p %s", c, c->url));
if (c->locked)
/* not safe to attempt redraw */
@@ -1124,7 +1124,7 @@ void content_broadcast(struct content *c, content_msg msg,
{
struct content_user *user, *next;
assert(c);
- LOG(("%p %s -> %d", c, c->url, msg));
+// LOG(("%p %s -> %d", c, c->url, msg));
for (user = c->user_list->next; user != 0; user = next) {
next = user->next; /* user may be destroyed during callback */
if (user->callback != 0)