We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd60b07 commit 53010ecCopy full SHA for 53010ec
run.py
@@ -32,11 +32,9 @@
32
Minify(app=app, html=True, js=False, cssless=False)
33
34
if DEBUG:
35
- app.logger.info('DEBUG = ' + str(DEBUG) )
36
- app.logger.info('FLASK_ENV = ' + os.getenv('FLASK_ENV') )
+ app.logger.info('DEBUG = ' + str(DEBUG) )
37
app.logger.info('Page Compression = ' + 'FALSE' if DEBUG else 'TRUE' )
38
app.logger.info('DBMS = ' + app_config.SQLALCHEMY_DATABASE_URI)
39
- app.logger.info('ASSETS_ROOT = ' + app_config.ASSETS_ROOT )
40
41
if __name__ == "__main__":
42
app.run()
0 commit comments