STM32CubeIDE not able to get the print on the debug screen for nucleo-wl55jc1
HI,
I'm new to STM programming. I have set up everything and I'm able to load the program to the board. but when I'm trying to print some lines to the SWV data console, nothing is getting printed. I have used the example UART printf program that is given by the example of ST projects.
I'm using STLink and below is my configuration for debugging.

in the .ioc file I'm not able to see the debug option in sys section

this is how I'm getting the debug screen. no error but no prints are coming on the swv data console
below is my while loop code to print the count value. count
while (1)
{
/* USER CODE END WHILE */
/* USER CODE BEGIN 3 */
printf("The counter value: %d /r/n", count);
count++;
HAL_Delay(1000);
}

as we can see the count value is changing. but that is not getting printed.

What can change here to get the expected result?

