Skip to content

Commit

Permalink
Change autoalloc worker connection log level to info
Browse files Browse the repository at this point in the history
It is useful to see (by default) from which allocation did a worker connect from.
  • Loading branch information
Kobzol committed Nov 22, 2023
1 parent 38886a6 commit 0123e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/hyperqueue/src/server/autoalloc/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ fn on_worker_connected(
return;
}
};
log::debug!("Worker {worker_id} connected to allocation {allocation_id}");
log::info!("Worker {worker_id} connected from allocation {allocation_id}");

let allocation = get_or_return!(queue.get_allocation_mut(&allocation_id));
match allocation.status {
Expand Down

0 comments on commit 0123e1a

Please sign in to comment.