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 1e841e3 commit 170e40aCopy full SHA for 170e40a
samples/boards/nordic/coresight_stm/pytest/test_stm.py
@@ -138,7 +138,9 @@ def _nrfutil_dictionary_from_serial(
138
try:
139
# run nrfutil trace in background non-blocking
140
logger.info(f"Executing:\n{cmd}")
141
- proc = subprocess.Popen(cmd.split(), stdout=subprocess.DEVNULL)
+ proc = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
142
+ logger.info(f'out: {proc.stdout}\n')
143
+ logger.info(f'err: {proc.stderr}\n')
144
except OSError as exc:
145
logger.error(f"Unable to start nrfutil trace:\n{cmd}\n{exc}")
146
0 commit comments