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
By default the level for logging is warning. So you won't see a logging message of level DEBUG. To fix this just enable debug logging with the basicConfig() function of the logging module: