Xcode: Not seeing console logs while debug-stepping

Hi!


For a while now, I've been experiencing an issue when debugging and using breakpoints, where I don't see console logs from a function until I fully resume execution. I'm sure this hasn't always been the case.


An example:


func someMethod() {
     print("Hello")
     breakpointHere() //<----------------
}


If I breakpoint there, I don't see "Hello" in the console window.


Does anyone know if there's a setting to toggle this? Is the console perhaps being disabled while execution is paused (although code is executing as I step onward using the debug tools)?


Thanks