Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Boris Zbarsky <[email protected]>
  • Loading branch information
jamesharrow and bzbarsky-apple authored Aug 29, 2024
1 parent 00431de commit 5da781c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ Status WaterHeaterManagementDelegate::HandleCancelBoost()
CHIP_ERROR err = GenerateBoostEndedEvent();
if (err != CHIP_NO_ERROR)
{
ChipLogError(AppServer, "HandleCancelBoost: Failed to send BoostEnded event: %" CHIP_ERROR_FORMAT, err.Format());
ChipLogError(AppServer, "HandleCancelBoost: Failed to generate BoostEnded event: %" CHIP_ERROR_FORMAT, err.Format());

return Status::Failure;
}
Expand Down Expand Up @@ -440,7 +440,7 @@ Status WaterHeaterManagementDelegate::ChangeHeatingIfNecessary()
CHIP_ERROR err = GenerateBoostEndedEvent();
if (err != CHIP_NO_ERROR)
{
ChipLogError(AppServer, "ChangeHeatingIfNecessary: Failed to send BoostEnded event: %" CHIP_ERROR_FORMAT,
ChipLogError(AppServer, "ChangeHeatingIfNecessary: Failed to generate BoostEnded event: %" CHIP_ERROR_FORMAT,
err.Format());
}
}
Expand Down

0 comments on commit 5da781c

Please sign in to comment.