diff options
author | Philipp Gesang <phg@phi-gamma.net> | 2016-04-25 07:40:10 +0200 |
---|---|---|
committer | Philipp Gesang <phg@phi-gamma.net> | 2016-04-25 07:40:10 +0200 |
commit | 88636ab5075bad0fdd6c635629fc29a9f95d8cbc (patch) | |
tree | 6b5cf704c8d30ef672a085420db4aab9ce3da1e1 /src/luaotfload-loaders.lua | |
parent | cc59be4bd1d31b2bb7207dc60072d2090d045fef (diff) | |
download | luaotfload-88636ab5075bad0fdd6c635629fc29a9f95d8cbc.tar.gz |
[loaders,resolvers] tone down default log noise
Diffstat (limited to 'src/luaotfload-loaders.lua')
-rw-r--r-- | src/luaotfload-loaders.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/luaotfload-loaders.lua b/src/luaotfload-loaders.lua index 8a29256..f6cb272 100644 --- a/src/luaotfload-loaders.lua +++ b/src/luaotfload-loaders.lua @@ -43,14 +43,14 @@ end local unsupported_reader = function (format) return function (specification) - logreport ("both", 0, "loaders", + logreport ("both", 4, "loaders", "font format “%s” unsupported; cannot load %s.", format, tostring (specification.name)) end end local afm_compat_message = function (specification, method) - logreport ("both", 0, "loaders", + logreport ("both", 4, "loaders", "PFB format only supported with matching \z AFM; redirecting (“%s”, “%s”).", tostring (specification.name), tostring (method)) @@ -78,7 +78,7 @@ local install_formats = function () readers [which] = reader handlers [which] = { } if not seqset [which] then - logreport ("both", 0, "loaders", + logreport ("both", 3, "loaders", "Extending reader sequence for “%s”.", which) sequence [#sequence + 1] = which seqset [which] = true |