Add dummy log when calling tasks

This commit is contained in:
Louis Dureuil 2024-01-30 12:28:03 +01:00
parent b8da117b9c
commit 73e66d5a97
No known key found for this signature in database

View File

@ -263,6 +263,7 @@ async fn get_tasks(
req: HttpRequest,
analytics: web::Data<dyn Analytics>,
) -> Result<HttpResponse, ResponseError> {
tracing::info!("You called tasks");
let mut params = params.into_inner();
analytics.get_tasks(&params, &req);