This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TM4C129XNCZAD: Adding log events in the NDK to be displayed in the code composer studio console

Part Number: TM4C129XNCZAD

Hello,

I would like to add log events in the NDK stack to be displayed in the code composer studio console for debugging purposes.

I added the following configurations to the .cfg file:

BIOS.logsEnabled = true;

Global.debugAbortLevel = Global.DBG_INFO;
Global.debugPrintLevel = Global.DBG_INFO;

Also, I used the following function to add my logs:  DbgPrintf(DBG_INFO, "Debug log");
then rebuilt the NDK.

But nothing is displayed on the CCS console or the debugger console. How can I show the added logs?

Thanks,