Skip to content

Commit

Permalink
Avoid printing out floating values
Browse files Browse the repository at this point in the history
  • Loading branch information
erwinpan1 authored and woody-apple committed Aug 7, 2024
1 parent 5b4b490 commit 84f7266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/chef/common/chef-concentration-measurement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Protocols::InteractionModel::Status chefConcentrationMeasurementWriteCallback(
CHIP_ERROR err = clusterInstance->SetMeasuredValue(MakeNullable(newValue));
if (CHIP_NO_ERROR == err)
{
ChipLogDetail(DeviceLayer, "Updated EP:%d, Cluster: 0x%04x to MeasuredValue: %g", endpoint, clusterId, newValue);
ChipLogDetail(DeviceLayer, "Updated EP:%d, Cluster: 0x%04x MeasuredValue", endpoint, clusterId);
}
else
{
Expand Down

0 comments on commit 84f7266

Please sign in to comment.