Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix log
  • Loading branch information
sureshanaparti committed Apr 15, 2026
commit b37d94bd610f64cfe8abe38ab1de5137a4d566eb
Original file line number Diff line number Diff line change
Expand Up @@ -1107,7 +1107,7 @@ public Map<Long, VirtualMachine.PowerState> updatePowerState(
private boolean isPowerStateInSyncWithInstanceState(final VirtualMachine.PowerState powerState, final long powerHostId, final VMInstanceVO instance) {
State instanceState = instance.getState();
if (instanceState == null) {
s_logger.warn(String.format("VM %s has null instance state during power state sync check, treating as out of sync", instance));
logger.warn("VM {} has null instance state during power state sync check, treating as out of sync", instance);
return false;
}
if ((powerState == VirtualMachine.PowerState.PowerOff && instanceState == State.Running)
Expand Down
Loading