Tagged Questions

32
votes
11answers
27k views

How can one grab a stack trace in C?

I know there's no standard C function to do this. I was wondering what are the techniques to to this on Windows and *nix? (Windows XP is my most important OS to do this on right now.) Thanks for ...
15
votes
3answers
1k views

Can I get the stack traces of all threads in my c# app?

I'm debugging an apparent concurrency issue in a largish app that I hack on at work. The bug in question only manifests on certain lower-performance machines after running for many (12+) hours, and I ...
13
votes
2answers
4k views

Print current call stack in Python

In Python, how can I print the current call stack from within a method (for debugging purposes).
11
votes
4answers
2k views

Recreate stack trace with line numbers from user bug-report in .net?

First, the problem: I have several free projects, and as any software they contains bugs. Some fellow users when encounter bug send me a bug-reports with stack traces. In order to simplify finding ...
10
votes
1answer
184 views

stack trace with readable subroutine arguments

Is it possible to print 'fine' stacktrace with function params interpolated, such as Data::Dumper does? Instead of last line of this check_module_auth_cookie........... disabled, ok. ...
8
votes
4answers
184 views

Is there a way to log the JavaScript stack trace without putting breakpoints?

I would like to be able to perform manipulations on a given JS app, and then simply get a large log of all the functions that have been called. This is possible in Chrome, but only if one puts a ...
8
votes
6answers
4k views

How can I get PHP to produce a backtrace upon errors?

Trying to debug PHP using its default current-line-only error messages is horrible. How can I get PHP to produce a backtrace (stack trace) when errors are produced?
7
votes
1answer
105 views

Check what a running process is doing

Is there a way on Linux to check what a running Python daemon process is doing? That is, without instrumenting the code and without terminating it? Preferably I'd like to get the name of the module ...
7
votes
2answers
471 views

What is a stack trace, and how can I use it to debug my application errors?

Sometimes when I run my application it gives me an error that looks like: Exception in thread "main" java.lang.NullPointerException at com.example.myproject.Book.getTitle(Book.java:16) ...
6
votes
3answers
800 views

print python stack trace without exception being raised

Something funky is happening with one of my class's instance variables. I want to make the variable a property, and whenever it is accessed I want to print out the stack trace of all the code leading ...
6
votes
2answers
176 views

What are those + signs at the end of each stack trace line?

I was wondering: When looking at an ASP.NET error page with a stack trace you can see a + sign and a number at the end of each line. For example: Also in the trace pasted in this question: ...
6
votes
7answers
705 views

Attaching the .net debugger while still providing useful logging on death

I would like to have some kind of catch-all exceptions mechanism in the root of my code, so when an app terminates unexpectedly I can still provide some useful logging. Something along the lines of ...
5
votes
1answer
72 views

Add user-specified information to java stack traces

Is there a way to add additional information to a java stacktrace? I am developing an interpreter for a script language and would like to see the corresponding lines of script code in the java ...
5
votes
3answers
180 views

Java Thread Dump Summarisation Tool

I sometimes have to look at thread dumps from a Tomcat server. However, this is a very slow process as my application uses thread pools with a couple of hundred threads. Most of the thread dumps I ...
5
votes
2answers
1k views

Why do I get no line numbers from a stack trace created from Exceptions?

Okay; assuming this code running in debug mode - static StackFrame GetTopFrameWithLineNumber(Exception e) { StackTrace trace = new StackTrace(e); foreach (StackFrame frame in ...
4
votes
2answers
92 views

Java - Is it possible to output the stacktrace with method signatures?

Is it possible to output the current stacktrace with method signatures? I'm trying to debug some obfuscated code that has a ton of methods with the same name that just differ in arguments and return ...
4
votes
1answer
99 views

Method for runtime comparison of two programs' objects

I am working through a particular type of code testing that is rather nettlesome and could be automated, yet I'm not sure of the best practices. Before describing the problem, I want to make clear ...
4
votes
4answers
779 views

App crashing in iPad simulator with no useful console info

please forgive the total newbie here - I am running an app in the simulator, and sometimes when it crashes it posts useful info in the console, other times absolutely nothing. When it posts nothing, ...
4
votes
5answers
459 views

Java: how to get arguments passed to method that called this method?

In java, it is possible to get the class and method that called the current method (the method in which you get the StackTrace). My question is, can I get the arguments that were passed to the method ...
4
votes
4answers
881 views

Print the name of the calling function to the debug log

Objective-C's runtime seems to be rather robust, so I was wondering if there's a way to log the name of the function that called the current function (for debugging purposes). My situation is that a ...
4
votes
1answer
165 views

Help with Java thread dump of partially hanged j2ee server

Our J2ee server (which will remain nameless for embarrassment reasons) slows down drastically from time to time. I have managed to create a thread dump. And trying to analyze it. One of the things ...
4
votes
4answers
1k views

How to disable stack trace generation in a java program?

I want to disable the stack trace getting generated when an exception is thrown. I have used, Runtime.getRuntime().traceInstructions(false); Runtime.getRuntime().traceMethodCalls(false); but ...
4
votes
4answers
419 views

How to get the stacktrace in a mobile device?

I'm getting a NullPointerException in a Nokia S40. I want to know what is causing this exception. The device shows: NullPointerException java/lang/NullPointerException This error only occurs ...
4
votes
7answers
3k views

How to get a stack trace when C++ program crashes? (using msvc8/2005)

Sometimes my c++ program crashes in debug mode, and what I got is a message box saying that an assertion failed in some of the internal memory management routines (accessing unallocated memory etc.). ...
3
votes
3answers
92 views

How can I hide long class paths in stack traces to make them readable?

Often stack traces can get so verbose from long class paths that they are very painful to read. Here's an example: 1) No implementation for java.util.Set< ...
3
votes
3answers
135 views

Slimming Down Exception/Environment.StackTrace Meaningfully

I am analyzing errors in a legacy application as I clean it up and improve it. I have some stack traces being logged to the database, but there is a limit (VARCHAR2(1000)) to how much it is storing, ...
3
votes
1answer
234 views

Is there a way to examine the Stack variables at runtime in c#?

I wonder if there is a way to dump the contents of the stack at runtime? I am interested in both the parent functions information (name, parameters, line) which I know I can get with the StackTrace ...
3
votes
2answers
198 views

Finding the source of format errors when using python logging

When I have lots of different modules using the standard python logging module, the following stack trace does little to help me find out where, exactly, I had a badly formed log statement: Traceback ...
3
votes
1answer
311 views

C++ figure out if the debugger is attached

I use stackwalk64 to generate stacktraces for C++ in visual studio 2008 using the latest symchk.exe and dbghlp.dll. This works fine when I'm running the standalone exe. However, when the debugger is ...
3
votes
1answer
226 views

improving stack trace hook in python

All, I have a question similar to question 2617120, found here: how to use traceit to report function input variables where the questioner wanted pointers on how to make python printout ...
3
votes
3answers
681 views

Use C# attribute to track function call, variables, and return value?

In Python, I can use decorators to trace the function call, its variables and return values. It is very easy to use. I just wonder can C# do the same thing? I find out there is a sample code of ...
3
votes
2answers
99 views

Listing variables in current and higher frames

I'm trying to debug a script with perl -d .... After I break where I want, I'd like to print out the current environment and the environment from higher frames. I see the stack via T. Now, if I try ...
3
votes
2answers
650 views

How to print each function call during execution in WinDbg?

I am debugging an application written in VC++. How do i make WinDbg print the function name and all the values of the arguments to the functions during execution of the debuged process?
3
votes
6answers
1k views

how to see stacktrace of.net application

I have a .net Windows application in the production that has no access to Visual Studio(standard edition), and the only thing they can install is the express edition, which does not have the ...
3
votes
5answers
766 views

Should I Print the Exception Stack Trace?

How inefficient is it to get the stack trace for an exception? I know it's costly, but how costly? Should they definitely not be used in production environment?
2
votes
4answers
61 views

C++ Stack Tracing issue

I am working on a class which I would like to use to log the current Call Stack on computers with Windows Vista/7. (Very similar to “Walking the callstack” ...
2
votes
1answer
42 views

Can Guice be configured to hide the class path in stack traces?

Guice's stack traces can get so verbose that they are very painful to read. Here's an example: 1) No implementation for ...
2
votes
1answer
91 views

What is the number next to the method name in a stack trace?

I have a simple question, I suppose, but I cannot find anything. What's the number at the end of line 6, + 429?
2
votes
2answers
143 views

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:- backtrace() returned 8 addresses ./libtst.so(myfunc5+0x2b) [0xb7767767] ...
2
votes
2answers
294 views

how can I understand Android crash errors and rectify them. (edited - Solved!)

This is an example of one of the stack traces, how do I fix my application from this? are there any other tools in google marketplace that help me with this? java.lang.IllegalStateException: ...
2
votes
6answers
225 views

Eclipse - showing full call stack (like when it hits breakpoint in debugger) without putting in breakpoints?

I'm working with a legacy Java app that is new to me so one way to figure out how it works and find things easier, I have thought would be to be able to get the full stack trace after I perform ...
2
votes
4answers
234 views

Getting local variables

When getting a stacktrace as error report from an application that is already deployed, it would be helpful to also get the actual variable values to reconstruct the system's state at the point before ...
2
votes
1answer
183 views

What's the linux command to get the stack of a running process without having to attach to it in a debugger?

What's the linux command to get the stack of a running process without having to attach to it in a debugger? I've seen someone do this before, but do not recall the command they used to do it. This ...
2
votes
3answers
195 views

How do I retrieve the name of the lowest subclass from the context of the superclass in Java?

Rational I would like to have more detailed logging debugging/logging output on a few superclasses, so the subclass name will not actually be effecting real-time performance nor application logic. ...
1
vote
0answers
41 views

Print PHP running call stack from outside the PHP

Is there any runtime stack trace feature in PHP, by a given PID of it? (For whom also write Java, I mean jstack.) I got few PHP background process that they are freeze once a while on some unknown ...
1
vote
1answer
29 views

A stacktrace pointing to a path on the build server?

The installation of a service faulted, because a wcf service was wrongly configured. I was surprised, when reading the stacktrace of the exception in the event log, that (only) the last entry of the ...
1
vote
2answers
74 views

Tracing a previous method call in PHP

Use Case: I'm trying to create a diagnostic test for my unit testing framework that runs each test case and then returns a list of public methods which have not yet been covered by the test case. The ...
1
vote
0answers
35 views

Are there any alternatives to IL offsets to get more context in a stack trace in Silverlight?

I understand the decision not to include PDB's in a XAP file. This of course means no line numbers in an exception stack trace. Others have looked for this, and we can get IL offsets to hunt things ...
1
vote
2answers
232 views

Unable to see java source file in Java stack traces

I am working on a web application deployed on a Tomcat server. On my local test system I use Eclipse and the WST to deploy my code to the server. If stack traces are thrown, I can see the source file ...
1
vote
2answers
676 views

how to print out line number during application run in VB.net

I would like to print out my debug message with line number in VB.net application. I did like this, Dim st As StackTrace Dim sf As StackFramee st = New StackTrace(New StackFrame(True)) sf = ...

1 2