-
Notifications
You must be signed in to change notification settings - Fork 169
Closed as not planned
Labels
Description
❗ If you need urgent assistance then file a case with Snowflake Support.
Otherwise continue here.
Please answer these questions before submitting your issue. Thanks!
-
What version of Python are you using?
Replace with the output of
python --version --version -
What operating system and processor architecture are you using?
Replace with the output of
python -c 'import platform; print(platform.platform())' -
What are the component versions in the environment (
pip freeze)?Replace with the output of
python -m pip freeze -
What did you do?
If possible, provide a recipe for reproducing the error.
A complete runnable program is good. -
What did you expect to see?
What should have happened and what happened instead?
-
Can you set logging to DEBUG and collect the logs?
import logging import os for logger_name in ['snowflake.sqlalchemy', '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)