made skipped songs log to debug instead

This commit is contained in:
2024-04-08 03:12:07 +03:00
parent 9d13a08e89
commit f4e8f4aca0
2 changed files with 3 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ impl Downloader {
async fn download_song(&mut self, path: String, audio_format: &String, url: &String) -> anyhow::Result<()> {
if PathBuf::from(&path).exists() {
log::info!("File {path} exists, skipping");
log::debug!("File {path} exists, skipping");
return Ok(())
}
let mut cmd = tokio::process::Command::new(&self.ytdlp_path);