diff --git a/entity_api/src/organization.rs b/entity_api/src/organization.rs index eb4e5c1..5e6b203 100644 --- a/entity_api/src/organization.rs +++ b/entity_api/src/organization.rs @@ -48,7 +48,7 @@ pub async fn delete_by_id(db: &DatabaseConnection, id: i32) -> Result<(), Error> match result { Some(organization_model) => { - debug!("Model to be deleted: {:?}", organization_model); + debug!("Existing Organization model to be deleted: {:?}", organization_model); organization_model.delete(db).await?; Ok(())