Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Erik516
Contributor II
Contributor II

How to disable Snowflake JDBC INFO logs flooding the Run console in Talend Studio R2025-06v3?

Hi,

After upgrading to Talend Studio R2025-06v3, my Run console is constantly flooded with INFO logs from the Snowflake JDBC driver, like connection session details every few seconds. These logs clutter the console and make it hard to track real job output.

Is there a way to disable or reduce the verbosity of these Snowflake INFO logs in Talend Studio?
I’ve looked for log level settings but can’t find a clear way to suppress these specific JDBC logs.

Any advice on where to configure or disable this logging would be appreciated!

Thanks in advance.

Labels (3)
1 Solution

Accepted Solutions
Denis_Segard
Support
Support

Hello,

you can test to add :

-Dnet.snowflake.jdbc.loggerImpl=net.snowflake.client.log.SLF4JLogger

(ref : https://www.ibm.com/mysupport/s/defect/aCIKe000000bplMOAQ/dt420347?language=en_US ) 

Kind regards
Denis

View solution in original post

6 Replies
quentin-vigne
Partner - Creator II
Partner - Creator II

Hi @Erik516 

I'm not sure this will work, but inside your studio (also in your TMC under Run profiles) you have JVM parameters. Go to Run tab -> Advanced settings -> JVM Parameters

add these 2 parameters (one row for each)

-Dorg.slf4j.simpleLogger.defaultLogLevel=warn
-Dorg.slf4j.simpleLogger.log.net.snowflake=warn

 

quentinvigne_0-1752051505960.png

 

I found the commands here : https://www.slf4j.org/api/org/slf4j/simple/SimpleLogger.html

 

- Quentin

Erik516
Contributor II
Contributor II
Author

Hi @quentin-vigne , thanks for the reply. I already tried that (as suggested by ChatGPT), but unfortunately it didn’t work.

quentin-vigne
Partner - Creator II
Partner - Creator II

What type of log4j level do you use ? 

 

If you are using "info" it might override those jvm parameters

 

Alternatively try 

-Dorg.slf4j.simpleLogger.log.net.snowflake=off
-Dorg.slf4j.simpleLogger.defaultLogLevel=off
Denis_Segard
Support
Support

Hello,

you can test to add :

-Dnet.snowflake.jdbc.loggerImpl=net.snowflake.client.log.SLF4JLogger

(ref : https://www.ibm.com/mysupport/s/defect/aCIKe000000bplMOAQ/dt420347?language=en_US ) 

Kind regards
Denis

Erik516
Contributor II
Contributor II
Author

Hi @quentin-vigne , using =off does not work. log4jlevel is not checked, I don't know if it is using "info" level by default.

Erik516
Contributor II
Contributor II
Author

@Denis_Segard this is working, great, thank you 🙌