We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b25f49e commit 640aa6eCopy full SHA for 640aa6e
1 file changed
packages/drivers/src/snowflake.ts
@@ -17,12 +17,15 @@ export async function connect(config: ConnectionConfig): Promise<Connector> {
17
}
18
19
// Suppress snowflake-sdk's Winston console logging — it writes JSON log
20
- // lines to stdout which corrupt the TUI display (see #249).
+ // lines into the interactive TUI output and corrupts the display.
21
if (typeof snowflake.configure === "function") {
22
try {
23
- snowflake.configure({ logLevel: "OFF" })
+ snowflake.configure({
24
+ logLevel: "OFF",
25
+ additionalLogToConsole: false,
26
+ })
27
} catch {
- // Older SDK versions may not support this option; ignore.
28
+ // Older SDK versions may not support these options; ignore.
29
30
31
0 commit comments