Skip to content

Commit 7338863

Browse files
authored
Minor: Debug log when FairPool is created (#7431)
1 parent 2503bda commit 7338863

File tree

1 file changed

+1
-0
lines changed
  • datafusion/execution/src/memory_pool

1 file changed

+1
-0
lines changed

datafusion/execution/src/memory_pool/pool.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ struct FairSpillPoolState {
143143
impl FairSpillPool {
144144
/// Allocate up to `limit` bytes
145145
pub fn new(pool_size: usize) -> Self {
146+
debug!("Created new FairSpillPool(pool_size={pool_size})");
146147
Self {
147148
pool_size,
148149
state: Mutex::new(FairSpillPoolState {

0 commit comments

Comments
 (0)