DataDog / dd-sdk-unity

Apache License 2.0
11 stars 2 forks source link

feat: Support mapping C# exceptions to native formats #108

Closed fuzzybinary closed 2 months ago

fuzzybinary commented 2 months ago

What and why?

Converting C# stacks to native formats allows us to map stack frames to C# files and lines using the IL2CPP mapping file. Without this, the file and line information is lost and only the method is usable.

We offer this mapping as a build option only when symbol files are output, because the native stack traces are basically useless without symbol files.

Review checklist