diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2014-07-13 12:05:52 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2014-07-13 12:05:52 +0200 |
commit | 2bc0e79bb7362ff57c2414c332e4d2f74ccfd977 (patch) | |
tree | dfb85f6a299fc29954224469f0b6ebf677f081d5 /src | |
parent | 7bf83c68f3575e1a49533ecd45178551e62746f9 (diff) | |
download | luaotfload-2bc0e79bb7362ff57c2414c332e4d2f74ccfd977.tar.gz |
[tool] fix log level status message
Diffstat (limited to 'src')
-rwxr-xr-x | src/luaotfload-tool.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luaotfload-tool.lua b/src/luaotfload-tool.lua index 4a75dd1..daf30e2 100755 --- a/src/luaotfload-tool.lua +++ b/src/luaotfload-tool.lua @@ -754,7 +754,7 @@ local actions = { } --- (jobspec -> (bool * bool)) list actions.loglevel = function (job) log.set_loglevel(job.log_level) - report ("info", 3, "util", "Setting log level", "%d", job.log_level) + report ("info", 3, "util", "Setting the log level to %d.", job.log_level) report ("log", 2, "util", "Lua=%q", _VERSION) return true, true end |