There may be cases where the target test log is not displayed normally even though no signal error occurred.
The pragma provided by Code Composer Studio may be affected.

Please check whether the function under test has the following code.

#pragma CODE_SECTION("example_function", "ramfuncs")
void example_function(){
}

If the above code exists, the function is stored in the ram area, and execution occurs in the flash area, so to call the function, the code loaded in the flash area is required.
After verifying that the code below exists in the original, it should be modified to call the function in cs_io_initialize() of the log interface.

Memcpy(&RamfuncsRunStart, &RamfuncsLoadStart, (Uint32)&RamfuncsLoadSize);

If the problem persists after fixing, please add the option below to the toolchain.conf.
cs_replace_code=#pragma CODE_SECTION//#pragma CODE_SECTION

Need more help with this?
Don’t hesitate to contact us here.

Thanks for your feedback.