How to have sentry stop filtering my log statements

I’m using the js package: “@sentry/browser”: “^5.12.1”,

If I have a console.log(‘test’), or even a Sentry.addBreadcrumb({message: ‘test’}) those message typically show up as “[Filtered]” in the stack trace of an error. Other times they actually show up in the stack trace as “test” - It’s not immediately clear what the pattern is for showing or filtering the message.

I understand the need to hide PII - but I’m not logging PII.

How do I disable this filtering?

It looks like sendDefaultPii isn’t even toggle able with the JS SDK.

This [Filtered] likely comes from the server trying to remove PII. Could you tell us what you have configured under “Data Privacy” in your project settings?