From 5a7b9aea6c836749fcb573cf90ba821c3aded1ae Mon Sep 17 00:00:00 2001 From: zeapoz Date: Tue, 2 Apr 2024 13:46:00 +0200 Subject: [PATCH] tweak(snapshot): log a message on successful export --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index 94c01b6..12657f7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -174,6 +174,8 @@ async fn main() -> Result<()> { std::fs::create_dir_all(export_path)?; let exporter = SnapshotExporter::new(export_path, db_path)?; exporter.export_snapshot(chunk_size)?; + + tracing::info!("Succesfully exported snapshot files to \"{directory}\"!"); } }