Skip to content

Commit 75808f7

Browse files
SenRamakriadbridge
authored andcommitted
Print crash report reboot messages only for non-release builds
1 parent 4c39d86 commit 75808f7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

platform/mbed_error.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,11 +291,13 @@ WEAK MBED_NORETURN mbed_error_status_t mbed_error(mbed_error_status_t error_stat
291291
core_util_critical_section_exit();
292292
//We need not call delete_mbed_crc(crc_obj) here as we are going to reset the system anyway, and calling delete while handling a fatal error may cause nested exception
293293
#if MBED_CONF_PLATFORM_FATAL_ERROR_AUTO_REBOOT_ENABLED && (MBED_CONF_PLATFORM_ERROR_REBOOT_MAX > 0)
294+
#ifndef NDEBUG
294295
mbed_error_printf("\n= System will be rebooted due to a fatal error =\n");
295296
if (report_error_ctx->error_reboot_count >= MBED_CONF_PLATFORM_ERROR_REBOOT_MAX) {
296297
//We have rebooted more than enough, hold the system here.
297298
mbed_error_printf("= Reboot count(=%ld) reached maximum, system will halt after rebooting =\n", report_error_ctx->error_reboot_count);
298299
}
300+
#endif
299301
system_reset();//do a system reset to get the system rebooted
300302
#endif
301303
#endif

0 commit comments

Comments
 (0)