How to see the trace?

Hello,
I want to see for example “tr_debug(“Applying quirks for ISSI”);”
How to do ?
Just modifying mbed_app.json ?
“target_overrides”: {
“*”: {
“mbed-trace.enable”: 1
}
}
Thanks for advance.

you need also to add

    mbed_trace_init();

once in your main();

I have in the main
#define MBED_CONF_MBED_TRACE_ENABLE 1
#include “mbed.h”
#include “mbed_trace.h”

mbed_trace_init();
I obtain only error messages like this :slight_smile:
[ERR ][QSPIF]: Status register not set correctly
[ERR ][QSPIF]: Device supports Quad bus, but Quad Enable Failed
[ERR ][QSPIF]: Init - Parse Basic Param Table Failed

How to have debug messages ?
Thanks for advance

Use mbed_app.json to configure mbed-trace: