We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50aabfa commit 23a679aCopy full SHA for 23a679a
tools/idf_monitor.py
@@ -749,7 +749,7 @@ def process_coredump(self):
749
self._print(output)
750
self._output_enabled = False # Will be reenabled in check_coredump_trigger_after_print
751
except subprocess.CalledProcessError as e:
752
- yellow_print("Failed to run espcoredump script: {}\n\n".format(e))
+ yellow_print("Failed to run espcoredump script: {}\n{}\n\n".format(e, e.output))
753
self._output_enabled = True
754
self._print(COREDUMP_UART_START + b'\n')
755
self._print(self._coredump_buffer)
0 commit comments