summaryrefslogtreecommitdiff
path: root/otfl-luat-ovr.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2013-04-15 01:01:25 +0200
committerPhilipp Gesang <phg42.2a@gmail.com>2013-04-15 01:01:25 +0200
commit283761cb68bff34c7d69a96b563382aa5e5a5142 (patch)
treeda8b4b8a98b52bcdbe731de92e2061ead3d41688 /otfl-luat-ovr.lua
parent5a8c4657de6b599e1897d8ac4e685264e0ac0587 (diff)
downloadluaotfload-283761cb68bff34c7d69a96b563382aa5e5a5142.tar.gz
finish move to new loggers
Diffstat (limited to 'otfl-luat-ovr.lua')
-rw-r--r--otfl-luat-ovr.lua20
1 files changed, 0 insertions, 20 deletions
diff --git a/otfl-luat-ovr.lua b/otfl-luat-ovr.lua
index 0657bbe..c57c68e 100644
--- a/otfl-luat-ovr.lua
+++ b/otfl-luat-ovr.lua
@@ -37,26 +37,6 @@ local set_loglevel = function (n)
end
logs.set_loglevel = set_loglevel
-function logs.report(category,fmt,...)
- if fmt then
- texiowrite_nl('log', stringformat("%s | %s: %s",module_name,category,stringformat(fmt,...)))
- elseif category then
- texiowrite_nl('log', stringformat("%s | %s",module_name,category))
- else
- texiowrite_nl('log', stringformat("%s |",module_name))
- end
-end
-
-logs.names_search = function (category, fmt, ...)
- if loglevel > 2 then
- local res = { module_name, " |" }
- if category then res[#res+1] = " " .. category end
- if fmt then res[#res+1] = ": " .. stringformat(fmt, ...) end
- texiowrite_nl("log", tableconcat(res))
- end
-end
-
-
local log = function (category, fmt, ...)
local res = { module_name, " |" }
if category then res[#res+1] = " " .. category end