summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--render/html.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/render/html.c b/render/html.c
index 30b7c7949..355885b1d 100644
--- a/render/html.c
+++ b/render/html.c
@@ -173,7 +173,6 @@ bool html_process_data(struct content *c, char *data, unsigned int size)
const char *encoding;
for (x = 0; x + CHUNK <= size; x += CHUNK) {
- LOG(("Parsing %d bytes", CHUNK));
err = binding_parse_chunk(c->data.html.parser_binding,
(uint8_t *) data + x, CHUNK);
if (err == BINDING_ENCODINGCHANGE) {
@@ -183,7 +182,6 @@ bool html_process_data(struct content *c, char *data, unsigned int size)
gui_multitask();
}
- LOG(("Parsing %lu bytes", (size - x)));
err = binding_parse_chunk(c->data.html.parser_binding,
(uint8_t *) data + x, (size - x));
if (err == BINDING_ENCODINGCHANGE) {
@@ -194,8 +192,6 @@ bool html_process_data(struct content *c, char *data, unsigned int size)
encoding_change:
- LOG(("Changing encoding"));
-
/* Retrieve new encoding */
encoding = binding_get_encoding(
c->data.html.parser_binding,