From e203148a2bb4cbcd198e7494132fb018e60c4722 Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Wed, 14 Feb 2018 15:05:42 -0500 Subject: add trace --- src/commands.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/commands.rs b/src/commands.rs index 4877193..f40ccfd 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -98,6 +98,9 @@ impl PlayQueue { } let item = queue.queue.pop_front().unwrap(); + + trace!("checking ytdl for: {}", item.url); + let src = match ytdl(&item.url) { Ok(src) => src, Err(e) => { -- cgit v1.3.1