About dump trace

Hi,
So many dump trace strings output constantly through uart like it shows below, how to shutdown them?

Hi @MJ163,

This trace (VM Dump ) is done in the low level code, when calling vm_dump function, it prints the vm state with all the threads and their stack trace:

/**
 * Prints the state of the MicroJvm virtual machine to the standard output stream.
 * For each Java thread, the Java stack trace, the name, the state and the priority are printed.
 */
void LLMJVM_dump(void);

If you have a thread calling this function, each time it will be printed.

Some of our example platforms call this function when a button is pressed. For instance the STM32F746G disco does a vmdump when the blue button is pressed.

Regards,