Xcode 12: print() not printing to debug area

I have not seen others having this issue (except for one person, but they were using Flutter). Any print() commands I have don't print anything to the debug area, any suggestions or am I missing something?
Answered by keepcoding9 in 633865022
Ugh, that was it. I thought there was a line separating the sides. Thank you!
hi,

(perhaps not your issue, but still, FWIW): Xcode 12 has a habit of opening projects with the Debug View at the bottom of the Xcode window showing only the Variables view, but not the Console window. you may need to click on the "Show the Console" button at the bottom, right of the Debug area, or follow the menu choices View --> Debug Area --> Activate Console.

hope that helps,
DMG
10
Accepted Answer
Ugh, that was it. I thought there was a line separating the sides. Thank you!
Yes, I marked the wrong answer to my own question. The correct answer is from DelawareMathGuy. Thanks again!
My debug console was not printing any information after the 12.0 update. The "View --> Debug Area --> Activate Console" worked for me DelawareMathGuy. Thanks again!
I still don't see any print statements in the debug console :(
Steps
  1. Create a swift iOS project

  2. Activate Debug Console

  3. Run app in Preview mode to trigger the print()

PS When running in the simulator mode(instead of preview), the print() works
Xcode 12: print() not printing to debug area
 
 
Q