From c27f1b368873fa35050fd59b4dd11ea0f7de6c16 Mon Sep 17 00:00:00 2001 From: Yuriy Larin Date: Thu, 25 May 2023 19:19:37 +0300 Subject: [PATCH] minor log --- src/preprocess/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/preprocess/mod.rs b/src/preprocess/mod.rs index 565d05160c..156c517f94 100644 --- a/src/preprocess/mod.rs +++ b/src/preprocess/mod.rs @@ -64,7 +64,7 @@ pub trait Preprocessor: PreprocessorClone { /// Pre-Process only one mutable chapter using context and supplied pre-processor fn preprocess_chapter(&self, ctx: &PreprocessorContext, chapter: &mut Chapter) -> Result<()> { - println!("preprocess {} by ctx = {}", chapter.name, ctx.renderer); + println!("preprocess chapter: '{}' by ctx = {}", chapter.name, ctx.renderer); Ok(()) }