Downgrade some logs.

This commit is contained in:
Nicolas Patry 2024-08-26 18:30:19 +02:00
parent 26e5037de4
commit 27b566baa8
No known key found for this signature in database
GPG Key ID: 64AF4752B2967863
2 changed files with 2 additions and 2 deletions

View File

@ -337,7 +337,7 @@ impl State {
break 'entry_loop;
}
Some(block_allocation) => {
tracing::info!("Allocation: {block_allocation:?}");
tracing::debug!("Allocation: {block_allocation:?}");
max_blocks = max(max_blocks, block_allocation.blocks.len() as u32);
Some(block_allocation)
}

View File

@ -131,7 +131,7 @@ impl Allocator for RadixAllocator {
prefill_tokens: prefill_tokens.clone(),
};
tracing::info!("Blocks {blocks:?}");
tracing::debug!("Blocks {blocks:?}");
self.allocation_id += 1;
self.allocations.insert(self.allocation_id, allocation);