-
I've recently trying Sentry. I like it very much, there's just one thing I do not know how to solve. I'm using the starter and the logback dependencies. In Issues reach the Sentry server and I can see them. The problem I having is that I use a lot Is there a simple way (preferible via Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hey @sebasira , you could filter events in
|
Beta Was this translation helpful? Give feedback.
-
Thank you @adinauer ! I'll try that. One more question related to this. } catch (SomeException ex){
log.error("Something went wrong with.......");
ex.printStackTrace()
...
...
} And in the Sentry dashboard I see the log.error (which you told me how to disable) and also the stackTrace. How can I also skip sending the stackTrace? |
Beta Was this translation helpful? Give feedback.
Hey @sebasira , you could filter events in
beforeSend
. Heres some docs for it. The easiest way to register it for a Spring Boot application is to register a bean: