I am using spring boot for service development and logback for logging using slf4j
I have Async annotation on one of my classes that sometimes throws errors and logs them. I don't want to log such error created by Async and would want to suppress such errors being logged on STDOUT.
I tried logging.org.springframework=false but in vain.
Is there a way to accomplish this?