diff --git a/src/main.rs b/src/main.rs index c4050ce..1b160d8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -240,7 +240,7 @@ async fn post_add_favorite(claims: Claims, body: web::Json) }) .await .unwrap(); - debug!("Adding favorite \"{}\" for userid: {}", user_id, body.path); + debug!("Adding favorite \"{}\" for userid: {}", body.path, user_id); HttpResponse::Ok() } else { error!("Unable to parse sub as i32: {}", claims.sub);