I\'m new to flask, and I\'m trying to add print info to debug server side code. When launch my flask app with debug=True, i can\'t get any info print to console
I tr
Had the same printing problem. Using sys.stdout.flush() after the print solved the issue.
sys.stdout.flush()
print