Skip to content

Commit

Permalink
Log backup completion message
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmichalis committed Jan 29, 2025
1 parent 5460c44 commit e43d15a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use serde::Deserialize;
use std::collections::HashMap;
use std::path::PathBuf;
use tokio::fs;
use tracing::warn;
use tracing::{info, warn};

mod chain;
mod content;
Expand Down Expand Up @@ -82,5 +82,7 @@ async fn main() -> Result<()> {
}
}

info!("Backup complete. Files saved in {}", output_path.display());

Ok(())
}

0 comments on commit e43d15a

Please sign in to comment.