Also log about __debug__.
authorScott Gasch <[email protected]>
Thu, 24 Feb 2022 23:52:21 +0000 (15:52 -0800)
committerScott Gasch <[email protected]>
Thu, 24 Feb 2022 23:52:21 +0000 (15:52 -0800)
bootstrap.py

index 1316dabc9433b7e468a0af60a4311d1b65db5cc8..52359f11ab77b64e4fd604528e8cdad54e557a33 100644 (file)
@@ -269,6 +269,10 @@ def initialize(entry_point):
         logger.debug('Python interpreter version: %s', sys.version)
         logger.debug('Python implementation: %s', sys.implementation)
         logger.debug('Python C API version: %s', sys.api_version)
+        if __debug__:
+            logger.debug('Python interpreter running in __debug__ mode.')
+        else:
+            logger.debug('Python interpreter running in optimized mode.')
         logger.debug('Python path: %s', sys.path)
 
         # Log something about the site_config, many things use it.