reduce unnecessary info-level spans to debug
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
7a6d657558
commit
a407909d09
4 changed files with 8 additions and 8 deletions
|
@ -10,7 +10,7 @@ static CORES_AVAILABLE: LazyLock<u128> = LazyLock::new(|| {
|
|||
.unwrap_or_default()
|
||||
.into_iter()
|
||||
.map(|core_id| core_id.id)
|
||||
.inspect(|&id| assert!(id < 128, "Core ID must be < 128 at least for now"))
|
||||
.inspect(|&id| debug_assert!(id < 128, "Core ID must be < 128 at least for now"))
|
||||
.fold(0_u128, |mask, id| mask | (1 << id))
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue