From 42d9b3d76ac9dee37c08c989eefe33bf87db612b Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sat, 30 May 2020 23:40:01 +0800 Subject: [PATCH] add print log --- tantivy/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tantivy/src/main.rs b/tantivy/src/main.rs index 7ba3c17..ac9a81f 100644 --- a/tantivy/src/main.rs +++ b/tantivy/src/main.rs @@ -9,6 +9,7 @@ use tempdir::TempDir; fn main() -> tantivy::Result<()> { let index_path = TempDir::new("tantivy_example_dir")?; + println!("Temp dir: {:?}", index_path); let mut schema_builder = Schema::builder(); schema_builder.add_text_field("title", TEXT | STORED);