Disable macro engine init traces

432639e341941686ab2afed869abcd0368a69974

Cohee <18619528+Cohee1207@users.noreply.github.com>

2 files changed, +2 -2Ignore whitespace
public/scripts/macros/engine/MacroLexer.js+1 -1
@@ -160,7 +160,7 @@ class MacroLexer extends Lexer {
160 /** @private */160 /** @private */
161 constructor() {161 constructor() {
162 super(MacroLexer.def, {162 super(MacroLexer.def, {
163 traceInitPerf: true,163 traceInitPerf: false,
164 });164 });
165 }165 }
166166
public/scripts/macros/engine/MacroParser.js+1 -1
@@ -23,7 +23,7 @@ class MacroParser extends CstParser {
23 /** @private */23 /** @private */
24 constructor() {24 constructor() {
25 super(MacroLexer.def, {25 super(MacroLexer.def, {
26 traceInitPerf: true,26 traceInitPerf: false,
27 nodeLocationTracking: 'full',27 nodeLocationTracking: 'full',
28 recoveryEnabled: true,28 recoveryEnabled: true,
29 });29 });