diff options
-rw-r--r-- | gn3/app.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,5 +1,6 @@ """Entry point from spinning up flask""" import os +import sys from typing import Dict from typing import Union @@ -45,6 +46,7 @@ def create_app(config: Union[Dict, str, None] = None) -> Flask: # DO NOT log anything before this point setup_app_handlers(app) + app.logger.info(f"Python Executable: '{sys.executable}'.") CORS( app, |