DEV Community

sunj
sunj

Posted on

Flask log

app.logger.debug('A value for debugging')
app.logger.warning('A warning occurred (%d apples)', 42)
app.logger.error('An error occurred')
Enter fullscreen mode Exit fullscreen mode

참조 : https://flask-docs-kr.readthedocs.io/ko/latest/quickstart.html#id11

Top comments (0)