From 43893fafe5e096b16f719fe115791d3fa84b9313 Mon Sep 17 00:00:00 2001 From: Geoffrey Hendrey Date: Fri, 23 Feb 2024 10:30:26 -0800 Subject: [PATCH] onInit logging info->debug --- src/TemplateProcessor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TemplateProcessor.ts b/src/TemplateProcessor.ts index 138581fb..0af11b2f 100644 --- a/src/TemplateProcessor.ts +++ b/src/TemplateProcessor.ts @@ -369,7 +369,7 @@ export default class TemplateProcessor { this.isInitializing = true; //run all initialization plugins for (const [name, task] of this.onInitialize) { - this.logger.info(`Running onInitialize plugin '${name}'...`); + this.logger.debug(`Running onInitialize plugin '${name}'...`); await task(); } try {