Skip to content

Commit

Permalink
lower temperature of logging statement
Browse files Browse the repository at this point in the history
  • Loading branch information
gjcolombo committed Jun 5, 2024
1 parent 3a506b2 commit a730d9c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions nexus/src/app/sagas/instance_common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,11 @@ pub async fn instance_ip_get_instance_state(
inst_and_vmm.instance().runtime_state.nexus_state;
let mut sled_id = inst_and_vmm.sled_id();

slog::warn!(osagactx.log(), "instance_ip_get_instance_state";
"instance_state" => ?found_instance_state,
"vmm_state" => ?found_vmm_state);
slog::debug!(
osagactx.log(), "evaluating instance state for IP attach/detach";
"instance_state" => ?found_instance_state,
"vmm_state" => ?found_vmm_state
);

// Arriving here means we started in a correct state (running/stopped).
// We need to consider how we interact with the other sagas/ops:
Expand Down

0 comments on commit a730d9c

Please sign in to comment.