summaryrefslogtreecommitdiff
path: root/source/html/handler.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2014-11-14 10:55:39 +0100
committerTor Andersson <tor.andersson@artifex.com>2014-12-03 12:25:51 +0100
commit8758df6c290525eb2246977d84816d171e95309b (patch)
treedf4ad0493647b325a13bbb90bd43dc1133ac4171 /source/html/handler.c
parent5ba0b431a80707230c0e7e14c2b4eb520efb3e2d (diff)
downloadmupdf-8758df6c290525eb2246977d84816d171e95309b.tar.xz
html: Print log messages when starting the layout stages.
Diffstat (limited to 'source/html/handler.c')
-rw-r--r--source/html/handler.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/html/handler.c b/source/html/handler.c
index 0c7463cb..6b19304b 100644
--- a/source/html/handler.c
+++ b/source/html/handler.c
@@ -60,6 +60,8 @@ html_open_document_with_stream(fz_context *ctx, fz_stream *file)
buf = fz_read_all(file, 0);
fz_write_buffer_byte(ctx, buf, 0);
+
+printf("html: parsing XHTML.\n");
xml = fz_parse_xml(ctx, buf->data, buf->len, 1);
fz_drop_buffer(ctx, buf);