In my QT application, I want to have it so some real-time information prints in the terminal if I run the application from the terminal.
When I use printf("print this") (either in main or during the paint event), it doesn't print until I close the gui.
Why is this, and how can I have it print information in real-time? (I'm using linux)
Thanks!