A decentralized music tracking and discovery platform built on AT Protocol 🎵
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update logging

+4
+4
crates/webscrobbler/src/scrobbler.rs
··· 42 42 return Ok(()); 43 43 } 44 44 45 + tracing::info!(artist = %scrobble.data.song.parsed.artist, track = %scrobble.data.song.parsed.track, "Searching for track (not cached)"); 46 + 45 47 let result = repo::track::get_track( 46 48 pool, 47 49 &scrobble.data.song.parsed.track, ··· 124 126 ), 125 127 }, 126 128 }; 129 + 130 + tracing::info!(query = %query, "Searching on Spotify"); 127 131 128 132 let result = spotify_client.search(&query).await?; 129 133