-
-
Notifications
You must be signed in to change notification settings - Fork 171
Open
Description
How do you use Sentry?
Sentry SaaS (sentry.io)
SDK version
v0.46
Steps to reproduce
I'm trying to use the ureq stack instead of the reqwest transport stack, for no reason other than that trim down the dependencies -- we only send one or a few sentry messages in our game's lifespan, and generally only while panicking, so having it use a simple backend makes sense.
I'm doing that by doing:
[dependencies.sentry]
version = "0.46.0"
default-features = false
features = ["backtrace", "panic", "contexts", "ureq"]
This "works" by trimming the async stack out of my Cargo.lock, but my events don't seem to be going through and making it onto my dashboard. Have I set up the backend correctly and my features for it correctly? How else should I diagnose this?
Expected result
I would see an error in my sentry dashboard
Actual result
I do not.