When using version 3.8.0 none of my logging statements make it into the cloud logs.
Reverting to version 3.7.0 fixed this issue.
Example of implementation:
(imports:)
import logging
logging.basicConfig(level=logging.INFO)
(Within function:)
logging.info(f"Deletion Execution completed.")
Please feel free to suggest improved logging implementation if mine is incorrect.
When using version 3.8.0 none of my logging statements make it into the cloud logs.
Reverting to version 3.7.0 fixed this issue.
Example of implementation:
(imports:)
(Within function:)
logging.info(f"Deletion Execution completed.")Please feel free to suggest improved logging implementation if mine is incorrect.