Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
Thank you so much for submitting this! We've added it to our backlog to review, and our team has been notified. |
|
Thanks for submitting this PR! When we review PRs, we follow the Pipedream component guidelines. If you're not familiar, here's a quick checklist:
|
By default, snowflake-sdk logs to a snowflake.log file in the current directory
https://github.com/snowflakedb/snowflake-connector-nodejs/blob/v2.3.6/lib/logger/node.js#L17
https://github.com/snowflakedb/snowflake-connector-nodejs/blob/da6afd13b5997f8c8c405edc83a576422568062e/lib/logger/node.js#L71-L83
This is probably not what we want, so this makes it log just to STDOUT. The other options are to log to a different file, disable logging entirely by logging to /dev/null or with
logLevel: "OFF", or log to both a file and STDOUT, or log to stderr by passing /dev/stderr (would have to check this actually works, unfortunately we can't pass"STDERR"here, even though it's been requested).