aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNathan Perry <avaglir@gmail.com>2018-02-14 15:05:42 -0500
committerNathan Perry <avaglir@gmail.com>2018-02-14 15:05:42 -0500
commite203148a2bb4cbcd198e7494132fb018e60c4722 (patch)
treeb564a409bd137603c4deb33e91dc1192a871fa29 /src
parent61e63991196f39631ab5ac8dae0fbda728935d8c (diff)
add trace
Diffstat (limited to 'src')
-rw-r--r--src/commands.rs3
1 files changed, 3 insertions, 0 deletions
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) => {