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);