简体   繁体   中英

how disable 'attempting to receive mail from folder' spring integration mail in spring boot

i need to disable "attempting to receive mail from folder " log in spring integration.

Because it writes a lot of logs in catalina.out Tomcat and increases the file size.

See more info in the issue you have raised: https://github.com/spring-projects/spring-integration/issues/3430 .

This is not an INFO starting with Spring Integration version 5.4 .

As a workaround you can just disable logging for the AbstractMailReceiver class making it on the, let's say, WARN level.

According your tags in the question, you probably use Spring Boot, so its configuration property for the logging may look like this:

logging.level.org.springframework.integration.mail.AbstractMailReceiver=warn

and you won't see that INFO message in logs any more.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM