[spinel] update log level for co-processor starting (#12786)

This commit changes the log level from CRIT to INFO for co-processor
restarting. This is a normal behavior so it shouldn't be CRIT.
This commit is contained in:
Li Cao
2026-04-02 09:44:14 -05:00
committed by GitHub
parent 42635a12b2
commit dab83c966b
+1 -1
View File
@@ -152,7 +152,7 @@ void SpinelDriver::ResetCoprocessor(bool aSoftwareReset)
if (aSoftwareReset && (SendReset(SPINEL_RESET_STACK) == OT_ERROR_NONE) && (WaitResponse() == OT_ERROR_NONE))
{
VerifyOrExit(mIsCoprocessorReady, resetDone = false);
LogCrit("Software reset co-processor successfully");
LogInfo("Software reset co-processor successfully");
ExitNow(resetDone = true);
}