Tagged Questions
A report of the active stack frames at a certain point in time during the execution of a program.
147
votes
17answers
48k views
How do I obtain crash-data from my Android application?
How can I get crash data (stack traces at least) from my Android application? At least when working on my own device being retrieved by cable, but ideally from any instance of my application running ...
106
votes
7answers
39k views
Get current stack trace in Java
Something like Environment.StackTrace in .Net.
BTW, Thread.dumpStack() is not what I want - I want to get the stacktrace back, not print it out.
80
votes
22answers
34k views
How to generate a stacktrace when my gcc C++ app crashes
When my c++ app crashes I would like to generate a stacktrace.
I already asked this but I guess I needed to clarify my needs.
My app is being run by many different users and it also runs on Linux, ...
74
votes
14answers
22k views
Showing the stack trace from a running Python application
I have this Python application that gets stuck from time to time and I can't find out where.
Is there any way to signal Python interpreter to show you the exact code that's running?
Some kind of ...
43
votes
7answers
11k views
Stacktrace to string in Java
Easiest way to convert the result of Throwable.getStackTrace() to a string that depicts the stacktrace?
34
votes
9answers
7k views
How can I find the method that called the current method?
When logging in C#, how can I learn the name of the method that called the current method? I know all about System.Reflection.MethodBase.GetCurrentMethod(), but I want to go one step beneath this in ...
31
votes
11answers
25k 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 ...
29
votes
7answers
26k views
In Java, how do i find the caller of a method using stacktrace or reflection?
I need to find the caller of a method. Is it possible using stacktrace or reflection?
25
votes
3answers
4k views
NullPointerException stack trace not available without debug agent
I have recently found a bug that causes a NullPointerException. The exception is caught and logged using a standard slf4j statement. Abridged code below:
for(Action action : actions.getActions()) {
...
24
votes
3answers
11k views
C++ display stack trace on exception
I want to have a way to report the stack trace to the user if an exception is thrown. What is the best way to do this? Does it take huge amounts of extra code?
To answer questions:
I'd like it to be ...
24
votes
5answers
9k views
Display lines number in Stack Trace for .NET assembly in Release mode
Is there a way to display the lines in the stack trace for the .NET assembly build/deployed in Release mode?
UPDATE:
My application is divided into three class library projects and one ASP.NET ...
24
votes
5answers
18k views
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 that many users will simply take a screenshot of the error message dialog instead ...
23
votes
9answers
10k views
Print PHP Call Stack
I'm looking for a way to print the call stack in PHP.
Bonus points if the function flushes the IO buffer.
20
votes
10answers
3k views
Stack trace for C++ using gcc
We use stack traces in proprietary assert like macro to catch developer mistakes - when error is caught, stack trace is printed.
I find gcc's pair backtrace()/backtrace_symbols() methods ...
20
votes
3answers
3k views
How to print the current Stack Trace in .NET without any exception?
I have a regular C# code. I have no exceptions. I want to programmatically log the current stack trace for debugging purpose. Example:
public void executeMethod()
{
logStackTrace();
...
18
votes
5answers
17k views
Official reasons for “Software caused connection abort: socket write error”
Given this stack trace snippet
Caused by: java.net.SocketException:
Software caused connection abort:
socket write error at
java.net.SocketOutputStream.socketWrite0(Native
Method)
...
18
votes
7answers
12k views
How can I get a Javascript stack trace when I throw an exception?
If I throw a Javascript exception myself (eg, throw "AArrggg"), how can I get the stack trace (in Firebug or otherwise)? Right now I just get the message.
edit: As many people below have posted, it ...
18
votes
5answers
6k views
How do I get ruby to print a full backtrace instead of a truncated one?
When I get exceptions, it is often from deep within the call stack. When this happens, more often than not, the actual offending line of code is hidden from me:
tmp.rb:7:in `t': undefined method ...
17
votes
5answers
901 views
C - how can I invoke buffer overflow [hw problem, not hacking]?
I got a hw assignment asking me to invoke a function without explicitly calling it, using buffer overflow. The code is basically this:
#include <stdio.h>
#include <stdlib.h>
void g()
{
...
16
votes
4answers
2k views
How it's better to invoke gdb from program to print it's stacktrace?
Now I'm using function like this:
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <unistd.h>
void print_trace() {
char pid_buf[30];
...
16
votes
5answers
2k views
Hooking a Stacktrace in Delphi 2009
The Exception class in Delphi 2009 received a number of new features. A number of them are related to getting a stacktrace:
property StackTrace: string *read* GetStackTrace;
property StackInfo: ...
16
votes
2answers
6k views
StackTrace in Flash / ActionScript 3.0
I want to see the stack trace in any function of my code, so i made somthing like this to call it and print the stack trace:
public function PrintStackTrace() {
try {
throw new ...
15
votes
3answers
4k views
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 ...
15
votes
6answers
4k views
Is there a way to dump a stack trace without throwing an exception in java?
I am thinking of creating a debug tool for my Java application.
I am wondering if it is possible to get a stack trace, just like Exception.printStackTrace() but without actually throwing an ...
12
votes
3answers
3k views
How do I include a stacktrace in my Django 500.html page?
I'm running Django 1.0 and I'm close to deploying my app. As such, I'll be changing the DEBUG setting to False.
With that being said, I'd still like to include the stacktrace on my 500.html page ...
11
votes
10answers
556 views
incorrect stacktrace by rethrow
If rethrow an exception with "throw;" but the stacktrace is incorrect:
static void Main(string[] args) {
try {
try {
throw new Exception("Test"); //Line 12
}
catch (Exception ex) ...
11
votes
2answers
887 views
How can I rethrow an exception in Javascript, but preserve the stack?
In Javascript, suppose I want to perform some cleanup when an exception happens, but let the exception continue to propagate up the stack, eg:
try {
enterAwesomeMode();
doRiskyStuff(); // might ...
11
votes
4answers
4k views
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 traceback module, but I can't figure out how to use it.
My goal is to catch any ...
11
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 ...
11
votes
9answers
2k views
How to extract debugging information from a crash
If my C++ app crashes on Windows I want to send useful debugging information to our server.
On Linux I would use the GNU backtrace() function - is there an equivalent for Windows?
Also, is there a ...
10
votes
1answer
170 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.
...
10
votes
1answer
356 views
Node.JS: Tool to see why process is still running?
Is there a way to see what timeouts, intervals or async operations (or endless loops) are still running and are stopping my process from ending?
I have been able to figure it out so far without such ...
10
votes
3answers
4k views
Python When I catch an exception, how do I get the type, file, and line number?
Catching an exception that would print like this:
Traceback (most recent call last):
File "c:/tmp.py", line 1, in <module>
4 / 0
ZeroDivisionError: integer division or modulo by zero
I ...
10
votes
3answers
5k views
Get __name__ of calling function's module in Python
Suppose myapp/foo.py contains:
def info(msg):
caller_name = ????
print '[%s] %s' % (caller_name, msg)
And myapp/bar.py contains:
import foo
foo.info('Hello') # => [myapp.foo] Hello
I ...
10
votes
3answers
10k views
Print full call stack on printStackTrace()?
I need to write small a log analyzer application to process some log files generated by a 3rd party closed source library (having custom logger inside) used in my project.
In case of an exception ...
10
votes
6answers
4k views
Portable C++ Stack Trace on Exception
I am writing a library that I would like to be portable. Thus, it should not depend on glibc or Microsoft extensions or anything else that is not in the standard. I have a nice hierarchy of classes ...
10
votes
2answers
1k views
How do I get a stack trace in OCaml?
The Objective Caml language will only produce stack traces if you ask for them just right - what are the requirements for both bytecode and native code?
9
votes
15answers
11k views
Java logger that automatically determines caller's class name
public static Logger getLogger() {
final Throwable t = new Throwable();
final StackTraceElement methodCaller = t.getStackTrace()[1];
final Logger logger = ...
8
votes
4answers
176 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
3answers
2k views
log errors with stack trace in javascript
I'm trying to log javascript errors on a productive site. So far it worked quite well with the following code included in the site:
function catcherr(errorMessage, url, line) {
var parameters = ...
8
votes
7answers
5k views
C# equivalent to Java's Exception.printStackTrace()?
Is there a C# equivalent method to Java's Exception.printStackTrace() or do I have to write something myself, working my way through the InnerExceptions?
7
votes
1answer
102 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
1answer
272 views
Got a stacktrace from Android Market that mentions a competitor's app
Does anyone know what this could possibly mean? Apparently someone else's app caused mine to crash? And it happens to be an app that directly competes with mine:
java.lang.RuntimeException: Unable ...
7
votes
5answers
352 views
Which safety net do you use in Perl?
Which safety net do you use?
use warnings;
or
use strict;
I know that
A potential problem caught by use
strict; will cause your code to stop
immediately when it is encountered,
...
7
votes
2answers
434 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)
...
7
votes
5answers
2k views
(Unknown Source) in Exception stack trace
Background
This question is related to Why does String.valueOf(null) throw a NullPointerException?
Consider the following snippet:
public class StringValueOfNull {
public static void ...
7
votes
2answers
833 views
make maven's surefire show stacktrace in console
Id like to see stacktrace of unit tests in console, does surefire support this?
7
votes
1answer
546 views
What do the numbers in stack trace mean?
How can I use the numbers in the stacktrace? What do these mean?
In eclipse I get often exceptions, for example a NullPointerException:
java.lang.NullPointerException
at ...