summaryrefslogtreecommitdiff
path: root/tex/context/base/chem-ini.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/chem-ini.lua')
-rw-r--r--tex/context/base/chem-ini.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/tex/context/base/chem-ini.lua b/tex/context/base/chem-ini.lua
index 908749092..d5c189fff 100644
--- a/tex/context/base/chem-ini.lua
+++ b/tex/context/base/chem-ini.lua
@@ -11,6 +11,8 @@ local lpegmatch = lpeg.match
local trace_molecules = false trackers.register("chemistry.molecules", function(v) trace_molecules = v end)
+local report_chemistry = logs.new("chemistry")
+
local ctxcatcodes = tex.ctxcatcodes
chemicals = chemicals or { }
@@ -67,7 +69,7 @@ end
function commands.molecule(str)
if trace_molecules then
local rep = lpegmatch(parser,str)
- logs.report("chemistry", "molecule %s => %s",str,rep)
+ report_chemistry("molecule %s => %s",str,rep)
texsprint(ctxcatcodes,rep)
else
texsprint(ctxcatcodes,lpegmatch(parser,str))