diff options
| author | Nathan Perry <np@nathanperry.dev> | 2022-11-29 11:32:34 -0500 |
|---|---|---|
| committer | Nathan Perry <np@nathanperry.dev> | 2022-11-29 11:32:34 -0500 |
| commit | 1a74c1560a420915ceb6d0da911ea1e632472dd5 (patch) | |
| tree | e78ebc6a2f2529c433831ace12e3054cb86d2639 /src | |
| parent | dbe5fb682cb3a0718e41e66b10b03d2e14f3032b (diff) | |
ytdl: trace error
Diffstat (limited to 'src')
| -rw-r--r-- | src/audio/ytdl.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/audio/ytdl.rs b/src/audio/ytdl.rs index 6042f02..645f3f4 100644 --- a/src/audio/ytdl.rs +++ b/src/audio/ytdl.rs @@ -42,6 +42,7 @@ pub fn ytdl_url(uri: &str) -> Result<String> { .output()?; if !out.status.success() { + log::error!("running ytdl {:?}", out); return Err(VoiceError::YouTubeDLRun(out).into()); } |
