can anyone help?
I am trying to get the full stacktrace when within a catch of try..catch. Currently its truncated to include only the current method where the error is....
Let me explain.. Currently i my stacktrace includes the method "Third" where the error happens but First and Second isn't included, i believe this is by design.
private void First()
{
this.Second();
}
private void Second()
{
this.Third();
}
private void Third()
{
try
{
throw new SystemException("ERROR HERE!");
}
catch (Exception ex)
{
// I WILL LOG THE EXCEPTION object "EX" here ! but ex.StackTrace is truncated!
}
}
I have seen a number of tricks to get the full stacktrace in a STRING but problem is my logging framework expects a object of type "Exception", but my variable (ex) which has my exception is valid but the property StackTrace is truncated.
Is there anyway i can receive a FULL exception with a FULL stacktrace so i am able to still send along my "EX" but this time it will have an UNtruncated stacktrace.
UnhandledErrror event seems to work as if i arrive here the Exception has a stack trace and is fully populated ...
I would really appreciated any feedback..
Thank you.
ex.ToString()should give you that... – Yaur May 23 '11 at 7:53