Browse Source

Fix spotify URI logging

Sasha Hilton 7 years ago
parent
commit
f830322e14
1 changed files with 1 additions and 1 deletions
  1. 1 1
      playback/src/player.rs

+ 1 - 1
playback/src/player.rs

@@ -534,7 +534,7 @@ impl PlayerInternal {
         let track = Track::get(&self.session, track_id).wait().unwrap();
 
         info!(
-            "Loading track \"{}\" with Spotify URI \"{}\"",
+            "Loading track \"{}\" with Spotify URI \"spotify:track:{}\"",
             track.name,
             track_id.to_base62()
         );