diff options
author | Philipp Gesang <phg@phi-gamma.net> | 2015-06-18 19:26:05 +0200 |
---|---|---|
committer | Philipp Gesang <phg@phi-gamma.net> | 2015-06-18 19:26:05 +0200 |
commit | 86085b2cc984672d81cb833a99558fce25eb094f (patch) | |
tree | cdc9d0b83a8a18dfc516a7ca6d31f3455e0f9aaf | |
parent | b271e253b40cd0af97f6d50f0461f87ad1ed5314 (diff) | |
download | luaotfload-86085b2cc984672d81cb833a99558fce25eb094f.tar.gz |
[parsers] at higher log levels, display information about fontconfig files being read
-rw-r--r-- | src/luaotfload-parsers.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/luaotfload-parsers.lua b/src/luaotfload-parsers.lua index 3a4faea..a9acd9f 100644 --- a/src/luaotfload-parsers.lua +++ b/src/luaotfload-parsers.lua @@ -190,6 +190,7 @@ local p_cheapxml = header * root --doc]]-- --- string -> path list local fonts_conf_scanner = function (path) + logreport("both", 5, "db", "Read fontconfig file %s.", path) local fh = ioopen(path, "r") if not fh then logreport("both", 3, "db", "Cannot open fontconfig file %s.", path) @@ -197,12 +198,17 @@ local fonts_conf_scanner = function (path) end local raw = fh:read"*all" fh:close() + logreport("both", 7, "db", + "Reading fontconfig file %s completed (%d bytes).", + path, #raw) + logreport("both", 5, "db", "Scan fontconfig file %s.", path) local confdata = lpegmatch(p_cheapxml, raw) if not confdata then logreport("both", 3, "db", "Cannot scan fontconfig file %s.", path) return end + logreport("both", 7, "db", "Scan of fontconfig file %s completed.", path) return confdata end |