[simulation] remove example log lines from otPlatLogCrashDump() (#10137)

This commit removes the `LogCrit` example lines emitted from
`otPlatLogCrashDump()` in simulation platform. These extra log
lines can cause test failures.
This commit is contained in:
Abtin Keshavarzian
2024-05-02 12:02:10 -07:00
committed by GitHub
parent f404a228aa
commit b8f036a570
+1 -7
View File
@@ -111,11 +111,5 @@ otPlatMcuPowerState otPlatGetMcuPowerState(otInstance *aInstance)
}
#if OPENTHREAD_CONFIG_PLATFORM_LOG_CRASH_DUMP_ENABLE
otError otPlatLogCrashDump(void)
{
otLogCritPlat("LOGGING SIMULATED CRASH DUMP");
otLogCritPlat("Reset Reason: %d", sPlatResetReason);
return OT_ERROR_NONE;
}
otError otPlatLogCrashDump(void) { return OT_ERROR_NONE; }
#endif