Tomcat8 - raven-JUL, all is logged, why?

I am struggling for hours to get sentry to behave :). No matter what I try in my logging.properties, everything on INFO level (using jav.util.loggin) is logged as an issue to sentry, which of course gives way to many entries.
This should be simple, right?

Here my maven import and logging.properties.

<dependency>
			<groupId>com.getsentry.raven</groupId>
			<artifactId>raven</artifactId>
			<version>7.8.0</version>
</dependency>

handlers = org.apache.juli.FileHandler, java.util.logging.ConsoleHandler, com.getsentry.raven.jul.SentryHandler

.level=WARNING

org.apache.juli.FileHandler.level = INFO
org.apache.juli.FileHandler.directory = ${catalina.base}/logs
org.apache.juli.FileHandler.prefix = ${classloader.webappName}.

java.util.logging.ConsoleHandler.level = INFO
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter

com.getsentry.raven.jul.SentryHandler.level=SEVERE
com.getsentry.raven.jul.SentryHandler.dsn=https://<sensored>@sentry.io/112375

What am I doing wrong?

Regards, Rob.

Offhand, it looks like your configuration is correct for what we’d expect to work with a standalone application. (I did verify this to make sure we didn’t just mess something up with the level in the handler.)

Unfortunately, we don’t have any in-house experience with Tomcat so it’s tough for us to provide any direct advice here, but my guess would be that it’s something related to the way the logging is configured with Tomcat specifically.