remove prints

This commit is contained in:
mpostma 2021-03-23 17:26:18 +01:00
parent 48d5f88c1a
commit 06f9dae0f3
No known key found for this signature in database
GPG key ID: CBC8A7C1D7A28C3A
2 changed files with 1 additions and 93 deletions

View file

@ -49,7 +49,7 @@ where
async fn perform_snapshot(&self) -> anyhow::Result<()> {
if !self.snapshot_path.is_file() {
bail!("invalid snapshot file path");
bail!("Invalid snapshot file path.");
}
let temp_snapshot_dir = spawn_blocking(move || tempfile::tempdir_in(".")).await??;