Skip to content

Commit 29c8240

Browse files
Changed log level when PyArrowIterator failed to be imported (#1272)
* Changed log level when PyArrowIterator failed to be imported * Update src/snowflake/connector/cursor.py Co-authored-by: Mark Keller <[email protected]>
1 parent e0d8456 commit 29c8240

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/snowflake/connector/cursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686

8787
CAN_USE_ARROW_RESULT_FORMAT = True
8888
except ImportError as e: # pragma: no cover
89-
logger.debug(
89+
logger.warning(
9090
f"Failed to import ArrowResult. No Apache Arrow result set format can be used. ImportError: {e}",
9191
)
9292
CAN_USE_ARROW_RESULT_FORMAT = False

0 commit comments

Comments
 (0)