From a5afd8476433c792d653c975232d00d8566ddf28 Mon Sep 17 00:00:00 2001 From: FliegendeWurst <2012gdwu@web.de> Date: Sun, 3 May 2020 21:48:13 +0200 Subject: [PATCH] Improve log message --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 8813c44..dce0c36 100644 --- a/src/main.rs +++ b/src/main.rs @@ -643,7 +643,7 @@ fn process(ilias: Arc, path: PathBuf, obj: Object) -> impl std::future::F let mut reader = stream_reader(data.bytes_stream().map_err(|x| { io::Error::new(io::ErrorKind::Other, x) })); - println!("Writing to {:?}..", path); + println!("Writing file to {:?}..", path); let file = AsyncFile::create(&path).await?; let mut file = BufWriter::new(file); tokio::io::copy(&mut reader, &mut file).await?;