You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I thought that I'd get a single "bundle" file with all my source information in it.
Actual Result
The output was:
skipped .\target\release\comms.pdb (no files found)
No "bundle" file was created.
FWIW, the "no files found" error isn't because the comms.pdb file doesn't exist: if I do sentry-cli difutil bundle-sources .\non-existant-file.pdb, I get:
C:\dev\comms> sentry-cli difutil bundle-sources .\non-existant-file.pdb
error: The system cannot find the file specified. (os error 2)
Add --log-level=[info|debug] or export SENTRY_LOG_LEVEL=[info|debug] to see more output.
Please attach the full debug log to all bug reports.
The text was updated successfully, but these errors were encountered:
My mistake: I was using split-debuginfo: "packed", and I thought that that was enough to have a full-fledged .pdb file.
However, to generate a .pdb file with enough information for sentry-cli difutil bundle-sources, I need to also have debug: true (in which case the size of the .exe remains small, but the information packed into the .pdb increases dramatically).
Thanks for the fast response, and sorry for the noise :)
Environment
How do you use Sentry?
Sentry SaaS (sentry.io)
Which SDK and version?
Rust,
sentry=0.27
Steps to Reproduce
cargo build --release
sentry-cli difutil bundle-sources .\target\release\comms.pdb
Expected Result
I thought that I'd get a single "bundle" file with all my source information in it.
Actual Result
The output was:
No "bundle" file was created.
FWIW, the "no files found" error isn't because the
comms.pdb
file doesn't exist: if I dosentry-cli difutil bundle-sources .\non-existant-file.pdb
, I get:The text was updated successfully, but these errors were encountered: