summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-02-16 14:14:00 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-02-16 14:14:00 +0000
commit082b128106ded259693dae6a8a0f8de8c4731fb4 (patch)
treed4dbca102a5da4f51e6b7cb8350831661a611f58 /gtk
parent120005e04bd3c76ae063712811a2e648de2c631d (diff)
downloadnetsurf-082b128106ded259693dae6a8a0f8de8c4731fb4.tar.gz
netsurf-082b128106ded259693dae6a8a0f8de8c4731fb4.tar.bz2
Remove legacy logging.
svn path=/trunk/netsurf/; revision=11698
Diffstat (limited to 'gtk')
-rw-r--r--gtk/thumbnail.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/gtk/thumbnail.c b/gtk/thumbnail.c
index 8131c60d7..fe522f262 100644
--- a/gtk/thumbnail.c
+++ b/gtk/thumbnail.c
@@ -73,10 +73,6 @@ bool thumbnail_create(hlcache_handle *content, struct bitmap *bitmap,
cwidth = min(content_get_width(content), 1024);
cheight = ((cwidth * height) + (width / 2)) / width;
- LOG(("Trying to create a thumbnail pixmap for a content of %dx%d@%d",
- content_get_width(content), content_get_height(content),
- depth));
-
/* Create buffer to render into */
pixmap = gdk_pixmap_new(NULL, cwidth, cheight, depth);