Top "Stack-trace" questions

A report of the active stack frames at a certain point in time during the execution of a program.

Print stack trace information from C#

As part of some error handling in our product, we'd like to dump some stack trace information. However, we experience …

c# parsing error-handling stack-trace
e.printStackTrace(); in string

There are e.printStackTrace() method to print exceptional error, so I would like to take entire exception in String and …

java android stack-trace
How to get line number(s) in the StackTrace of an exception thrown in .NET to show up

MSDN says this about the StackTrace property of the Exception class: The StackTrace property holds a stack trace, which you …

c# .net exception stack-trace
How to use Stacktrace to return Error Line Number in vb.net

I am trying to create some sort of error catching method that will return the error line number. We have …

vb.net error-handling stack-trace erl
How to get the Stack trace when logging exceptions with NLog?

When I use the default layout with NLog it only prints the name of the exception. I've been told that …

.net exception stack-trace nlog
Best way to invoke gdb from inside program to print its stacktrace?

Using a function like this: #include <stdio.h> #include <stdlib.h> #include <sys/wait.h&…

c linux gdb stack-trace
How can I force Ruby to show a full stack trace?

I just got this error message: ... from c:/ruby/lib/ruby/gems/1.8/gems/... ... 10 levels... from c:/ruby/lib/ruby/gems/1.8/…

ruby stack-trace
How to map function address to function in *.so files

backtrace function give set of backtrace how to map it with function name/file name/line number? for ex:- …

c debugging shared-libraries stack-trace
How to get longer stack dump (tombstone) from android?

As I have noticed, logcat returns always 34 lines of crashlog, like this: 4cf7c700 401c0000 4cf7c704 48463ff0 4cf7c708 44…

android stack-trace logcat tombstoning
How can I get a call stack listing in Perl?

Is there a way I can access (for printout) a list of sub + module to arbitrary depth of sub-calls preceding …

perl stack-trace callstack