### Python version 3.10.7 ### Operating system and processor architecture Linux 4.14 ### Installed packages ```python snowflake-connector-python==3.17.0 ``` ### What did you do? ```python Use the connector in Airflow deployed on an EC2 instance in AWS. ``` ### What did you expect to see? Connection is successful if AWS_DEFAULT_REGION is set. ### Can you set logging to DEBUG and collect the logs? ```bash import logging import os for logger_name in ('snowflake.connector',): logger = logging.getLogger(logger_name) logger.setLevel(logging.DEBUG) ch = logging.StreamHandler() ch.setLevel(logging.DEBUG) ch.setFormatter(logging.Formatter('%(asctime)s - %(threadName)s %(filename)s:%(lineno)d - %(funcName)s() - %(levelname)s - %(message)s')) logger.addHandler(ch) ```