Skip to content

Commit

Permalink
838 remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Druzhitskiy committed Jan 18, 2024
1 parent 7bce026 commit 6ed09fd
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions bob/src/api/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1169,7 +1169,6 @@ where
return Err(AuthError::PermissionDenied.into());
}
let group = find_group_on_disk(&bob, &disk_name, vdisk_id).await?;
debug!("group with provided vdisk_id found");
let partitions = create_slim_partitions(group).await;
Ok(Json(partitions))
}
Expand All @@ -1191,7 +1190,6 @@ where
return Err(AuthError::PermissionDenied.into());
}
let group = find_alien_group_on_disk(&bob, &disk_name, vdisk_id).await?;
debug!("group with provided vdisk_id found");
let partitions = create_slim_partitions(group).await;
Ok(Json(partitions))
}
Expand Down

0 comments on commit 6ed09fd

Please sign in to comment.