Hello!
I have not used Sentry, but I think to use Sentry, I’ll need to write a Sentry SDK that decode/de-obfuscate the incoming exception report before sending it to Sentry. I am tracking a C# application.
How should I send ambiguous frame to Sentry? For some obfuscated frame the decoder can’t find a exact match. It currently outputs some thing like this:
Frame #5: ClassC.FunctionC(bool)
Frame #4: Cannot find match for b.z()
Possible matches:
ClassB.Function1()
ClassB.Function2()
Frame #5: ClassA.FunctionA(ClassX)
I think one way I can try is to set frame #4 function value to one line like
Cannot find match for b.z(). Possible matches: ClassB.Function1(), ClassB.Function2()