diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2014-07-13 07:37:55 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2014-07-13 07:48:38 +0200 |
commit | 4a4edf88b2e69da6f609760c7a3664650b4abc2a (patch) | |
tree | 5a2c5aa18bf8e292a078782f22160b0365fe69d7 /src/luaotfload-main.lua | |
parent | cff9bd20679420af3e56b43d035f08c03f6a257e (diff) | |
download | luaotfload-4a4edf88b2e69da6f609760c7a3664650b4abc2a.tar.gz |
[main] deprioritize fontloader intro message
This message originates in ``luatex-fonts.lua`` [0]. The advice given on
using the Context libraries directly is counterproductive unless one is
already hacking on the Luaotfload code, in which case it should be
obvious anyways. Cluttering the log file with those lines is
unjustified.
[0] http://git.contextgarden.net/context/context/blob/master/tex/generic/context/luatex/luatex-fonts.lua#L139
Diffstat (limited to 'src/luaotfload-main.lua')
-rw-r--r-- | src/luaotfload-main.lua | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/luaotfload-main.lua b/src/luaotfload-main.lua index 83e12a9..7686c80 100644 --- a/src/luaotfload-main.lua +++ b/src/luaotfload-main.lua @@ -311,13 +311,13 @@ loadmodule "fontloader.lua" if fonts then if not fonts._merge_loaded_message_done_ then - report ("log", 0, "main", [["I am using the merged fontloader here.]]) - report ("log", 0, "main", [[ If you run into problems or experience unexpected]]) - report ("log", 0, "main", [[ behaviour, and if you have ConTeXt installed you can try]]) - report ("log", 0, "main", [[ to delete the file 'luaotfload-fontloader.lua' as I might]]) - report ("log", 0, "main", [[ then use the possibly updated libraries. The merged]]) - report ("log", 0, "main", [[ version is not supported as it is a frozen instance.]]) - report ("log", 0, "main", [[ Problems can be reported to the ConTeXt mailing list."]]) + report ("log", 5, "main", [["I am using the merged fontloader here.]]) + report ("log", 5, "main", [[ If you run into problems or experience unexpected]]) + report ("log", 5, "main", [[ behaviour, and if you have ConTeXt installed you can try]]) + report ("log", 5, "main", [[ to delete the file 'luaotfload-fontloader.lua' as I might]]) + report ("log", 5, "main", [[ then use the possibly updated libraries. The merged]]) + report ("log", 5, "main", [[ version is not supported as it is a frozen instance.]]) + report ("log", 5, "main", [[ Problems can be reported to the ConTeXt mailing list."]]) end fonts._merge_loaded_message_done_ = true |