Skip to content

Commit

Permalink
Use log level Progress instead of Error in one of controller log (#18723
Browse files Browse the repository at this point in the history
)

* Use log level Progress instead of Error in one of controller log

* Restyled by clang-format

Co-authored-by: Restyled.io <[email protected]>
  • Loading branch information
shubhamdp and restyled-commits authored May 23, 2022
1 parent a8b114a commit 721e9dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/controller/AutoCommissioner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,8 @@ Optional<System::Clock::Timeout> AutoCommissioner::GetCommandTimeout(Commissioni
switch (stage)
{
case CommissioningStage::kWiFiNetworkEnable:
ChipLogError(Controller, "Setting wifi connection time min = %u", mDeviceCommissioningInfo.network.wifi.minConnectionTime);
ChipLogProgress(Controller, "Setting wifi connection time min = %u",
mDeviceCommissioningInfo.network.wifi.minConnectionTime);
seconds = std::max(mDeviceCommissioningInfo.network.wifi.minConnectionTime, seconds);
break;
case CommissioningStage::kThreadNetworkEnable:
Expand Down

0 comments on commit 721e9dd

Please sign in to comment.