Top "Stack-trace" questions

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

How to read objective-c stack traces

i have the following stack trace: 0 MyApp 0x000833a3 +[TFCrashHandler backtrace] + 26 1 MyApp 0x000836bd TFSignalHandler + 28 2 libsystem_c.dylib 0x33eac727 _…

iphone objective-c stack-trace
Stop displaying entire stack trace in WebAPI

When an unexpected error occurs in WebAPI the user sees the entire stack trace. I believe that showing the entire …

c# .net asp.net-web-api stack-trace asp.net-web-api2
Getting "ArrayIndexOutOfBoundsException: null" with NO stack trace

In our log files we find the following: [2012-09-24 00:09:32.590 +0000UTC] ERROR host server1 [] [] somepackage.someclass [] [Unknown] [V3rAqPaDvvAAAAExEXhdWGyh] [pjsQwTGHzxcAAAE5…

java logging logback stack-trace bytecode
ArgumentNullException was unhandled - Value cannot be null. Parameter name: first

I am currently using the DotSpatial library for .NET (GIS Library). I am getting an error within my AppManager class. …

c# .net stack-trace argumentnullexception
Print stacktrace from C code with embedded lua

If I understand this correctly, Lua by default will call the debug library "debug.traceback" when an error occurs. However, …

lua stack-trace traceback lua-api
Java threads: interpreting thread states of a running JVM

A Java thread is always in one of the following ten states: NEW: Just starting up, i.e., in process …

java performance multithreading stack-trace jstack
How can you programmatically inspect the stack trace of an exception in Python?

When an exception occurs in Python, can you inspect the stack? Can you determine its depth? I've looked at the …

python exception-handling stack-trace traceback
Getting VB.NET line numbers in stack trace

I have a VB.NET 2010 Winforms application where I'd like to include line numbers in the stack trace. I've read …

winforms stack-trace vb.net-2010
Using promises - Logging stack trace in fail handler

I am rather new to nodejs so I will explain in a bit more detail what I am trying to …

javascript node.js stack-trace promise q
How to get fullstacktrace using _Unwind_Backtrace on SIGSEGV

I handle SIGSEGV by code: int C() { int *i = NULL; *i = 10; // Crash there } int B() { return C(); } int A() { return …

c gcc signals stack-trace stack-unwinding