The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
4answers
132 views

How to use printstacktrace in Java( Eclipse, android)?

I am developing an android app using eclipse. How to see printstacktrace's output?
0
votes
0answers
61 views

How can I print stacktrace of a application runs on Windows 64bit

My task is porting a DLL from 32 to 64, that DLL is used to print stack trace of application (when the app is being crashed), the DLL use AddVectoredExceptionHandler to get stack trace, it works fine ...
6
votes
2answers
214 views

How to generate javascript stacktrace?

Any suggestions on libraries which provide functionality to generate javascript stack traces? In Chrome and Firefox the console object exposes a trace function which prints a stack trace to the ...
0
votes
1answer
128 views

Is it more efficient to convert an exception's stack trace into byte[] array or ByteBuffer (Java)?

I need to log the exception into the database. The database API states I can either pass the value as ByteBuffer or as byte[] array. So which is more efficient? private final static byte[] ...
2
votes
2answers
100 views

Why does Throwable.printStackTrace takes a PrintWriter, instead of a Writer?

Why does public void printStackTrace(PrintStream s) in the Throwable class take a PrintWriter, instead of a Writer? I think Writer should be the norm (code to the interface, not a specific ...
4
votes
3answers
4k views

Avoid printStackTrace(); use a logger call instead

In my application, I am running my code through PMD.It shows me this message: Avoid printStackTrace(); use a logger call instead. What does that mean?
0
votes
1answer
3k views

Android. Exception handling

I would like to be able to determine, in case an exception occurs while the user is using my application, where exactly the exception took place. I'd like to do something similar ti printStackTrace() ...
5
votes
3answers
263 views

Correct way to handle Exception Stack Traces in Python

I am writing some code which can generate Exceptions deep in the stack, and I have a layer nearer the top which catches these exceptions and sends them off for processing by an error handling module. ...
0
votes
1answer
86 views

How to Have a trace of all executed functions

I have a thread with this run method: public void run(){ MAPTable t1 = new MAPTable(); t1.init(); while(true){ try { t1.refresh(); } catch ...
2
votes
4answers
399 views

About java Throwable

when I develop android application,I want to make a CrashReport class and then use it send report to my server. I make a class called CrashHandler which implement UncaughtExceptionHandler,and make a ...
2
votes
1answer
273 views

InterruptedException bringing up NullPointerException in printStacktrace j2me

I'm dealing with a midlet in j2me, and I have this thread class (say called chan) which only does the following: public class Chan extends Thread { public void run(){ try { ...
12
votes
9answers
11k views

Why is exception.printStackTrace() considered bad practice?

There is a lot of material out there which suggests that printing the stack trace of an exception is bad practice. E.g. from the RegexpSingleline check in Checkstyle: This check can be used ...
12
votes
4answers
19k views

Using e.printStackTrace() in Java

This is probably a newbie question, but hope you can help me. :) I have something like this: try { //try to do something there } catch (IOException e) { //handle the exception e.printStackTrace(); ...
2
votes
5answers
1k views

How to printStackTrace() from within a method

Printing a stack trace from within a catch is simple: catch (IOException e) { e.printStackTrace(); } But how do I do this anywhere within a method, without having an exception object?
3
votes
1answer
587 views

Override Logback error output

In my custom exception class I've overridden toString(): @Override public String toString() { final String msg = getLocalizedMessage(); // base String str = getClass().getName() + ": [" ...
3
votes
1answer
354 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 ...
1
vote
1answer
34 views

How to know what action is triggering an event?

How do I know what action is triggering a particular event? org.w3c.dom.events.EventListener refreshAnnotationsListener = new org.w3c.dom.events.EventListener() { @Override public void ...
10
votes
4answers
5k views

Is it a bad idea to use printStackTrace() in Android Exceptions?

Is it a bad idea to use printStackTrace() in Android Exceptions like this? } catch (Exception e) { e.printStackTrace(); }
2
votes
2answers
730 views

How to print exception stack trace of Objective-C exceptions with GNU runtime and without GNUStep?

I have an Objective-C app build on Linux with GCC 4.3 using no specific framework (only GNU-runtime). I am using Objective-C exceptions (via the '-fobjc-exceptions' compiler flag). Now I want to ...
1
vote
2answers
778 views

Catching some exceptions but ignoring others - why doesn't this work?

I have something similar to this. void func() { try { //socket disconnects in middle of ..parsing packet.. } catch(Exception ex) { if(!ex.getMessage().toString().equals("timeout") || ...
61
votes
4answers
15k views

How to print a stack trace in NodeJS?

Does anyone know how to print a stack trace in nodejs?
11
votes
2answers
33k views

What is the use of printStackTrace() method in Java?

I am going through a socket program. In it, printStackTrace is called by the IOException object in the catch block. What does printStackTrace() actually do? catch(IOException ioe) { ...
0
votes
3answers
1k views

Eclipse Stacktrace System.err problem

All of a sudden my printStackTrace's stopped printing anything. When I give it a different output stream to print to it works (like e.printStackTrace(System.out)) but obviously I would like to get it ...
5
votes
3answers
804 views

Getting the Stacktrace

When Exception happens you can print out the StackTrace and review it. What if you want to get the StackTrace without an exception happening? Is there a way to do this?
50
votes
3answers
11k 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(); ...