diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-08-01 07:42:31 -0700 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-08-01 07:42:31 -0700 |
commit | 86a83bbbd05bdbec3c4d08b16dee864ab05b5dd7 (patch) | |
tree | b548800d77f100c19c4a26132d7a3f7f610b6add /luaotfload-override.lua | |
parent | fc30e4ca60ec1ede81425056eae2143497a7833f (diff) | |
parent | 898fa8861c06b41acd946a1de35a13c64e26d22c (diff) | |
download | luaotfload-86a83bbbd05bdbec3c4d08b16dee864ab05b5dd7.tar.gz |
Merge pull request #117 from phi-gamma/master
include Type1 fonts in database (addresses issue #113)
Diffstat (limited to 'luaotfload-override.lua')
-rw-r--r-- | luaotfload-override.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/luaotfload-override.lua b/luaotfload-override.lua index 19cd505..8e467d5 100644 --- a/luaotfload-override.lua +++ b/luaotfload-override.lua @@ -99,8 +99,9 @@ end local set_logout = function (s, finalizers) if s == "stdout" then - logout = "term" + logout = "redirect" elseif s == "file" then --- inject custom logger + logout = "redirect" local chan = choose_logfile () chan:write (stringformat ("logging initiated at %s", osdate ("%F %T", ostime ()))) @@ -224,7 +225,7 @@ local names_report = function (mode, lvl, ...) if loglevel >= lvl then if mode == "log" then log (...) - elseif mode == "both" and log ~= "stdout" then + elseif mode == "both" and logout ~= "redirect" then log (...) stdout (...) else |