diff --git a/src/subsonic.rs b/src/subsonic.rs index 70108d4..55e6c5e 100644 --- a/src/subsonic.rs +++ b/src/subsonic.rs @@ -120,7 +120,7 @@ impl Client { // FIXME: is an entire channel per request overkill? maybe pool them? let (sender, receiver) = async_channel::bounded(1); - event!(target: "http_request", Level::DEBUG, method = request.method().as_str(), url = request.url().as_str()); + event!(target: "audrey::http_request", Level::DEBUG, method = request.method().as_str(), url = request.url().as_str()); // let tokio take care of the request + further json parsing // this is because reqwest doesn't like the glib main loop