* Serving Flask app 'app'
* Debug mode: on
These lines appear in the command line.
* Running on http://127.0.0.1:5000
Press CTRL+C to quit
* Restarting with stat
* Debugger is active!
* Debugger PIN: 458-677-350
These lines are printed in the log file.
Also note that this issue occurs only when I add this import:
from .utils.predict import MakePrediction
I want to see the complete Flask app startup messages in the command line, even with the from .utils.predict import MakePrediction
import.
what to do to solve this issue ?