Tagged Questions
36
votes
9answers
8k 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 ...
26
votes
3answers
5k 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()) {
...
11
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 ...
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 = ...
6
votes
3answers
299 views
Tool to extract java stack traces from log files
Is there any tool that can extract a list of stack traces appearing in the log file and probably count unique ones?
EDIT: I would preffer something that is not GUI-based and be run on the background ...
6
votes
2answers
201 views
Is there a way to trigger a stacktrace whenever a particular logger is used?
I'm currently trying to track down the source of some lazy loading calls in hibernate, and the easiest way to do so would be to turn on hibernate SQL logging whenever the lazy loading is going to ...
6
votes
7answers
453 views
Any reason not to always log stack traces?
Encountered a frustrating problem in our application today which came down to an ArrayIndexOutOfBounds exception being thrown. The exception's type was just about all that was logged which is fairly ...
5
votes
4answers
1k views
Log4j formatting: Is it possible to truncate stacktraces?
I want to log only the first few lines of Exceptions in my program. I know, I can do something like this to print only the first 5 lines of a stacktrace:
Throwable e = ...;
StackTraceElement[] stack ...
4
votes
3answers
2k views
How to send a stacktrace to log4j?
Say you catch an exception and get the following on the standard output (like, say, the console) if you do a e.printStackTrace() :
java.io.FileNotFoundException: so.txt
at ...
4
votes
5answers
982 views
Find module name of the originating exception in Python
Example:
>>> try:
... myapp.foo.doSomething()
... except Exception, e:
... print 'Thrown from:', modname(e)
Thrown from: myapp.util.url
In the above example, the exception was ...
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
681 views
How to log stackTrace without throwing the Exception in grails
In certain situations, I'd like to catch an Exception but still show the Stack Trace in the stackTrace log defined via the Log4J properties in grails. How can I do that?
I know I could write it into ...
3
votes
3answers
211 views
How to get a stack trace in .NET in normal execution?
In VB .NET, I know I can get a stack trace by looking at the value of ex.StackTrace when handling an exception. How can I get the functions on the stack when I am not handling an exception? I am ...
1
vote
3answers
117 views
How can I tell who calls System.gc()?
In a running system, we see lots of "Full GC (System)" which indicates someone triggers System.gc().
Is there a way to find out where in the code this happens?
I did search all the available source ...
1
vote
3answers
1k views
PHP: Callback on Entry/Exit of Class Methods?
Is there a way I can set up callbacks on (or automataically log) method parameters, entries, and exits without making explicit calls within each method? I basically want to log this information to my ...
0
votes
1answer
45 views
Tomcat and Logging Stacktrace Info
I'm having a very strange problem. When I log stacktraces, they seem to be originating at the line where I call the logger, rather than the line where the error occurs. This causes some serious wastes ...
0
votes
1answer
30 views
How to view exception trace in winform
I want to view stack trace as the given window. I'm writing my own log viewer. Is there any way to get this window as it is in visual studio.
thanks in advance.
0
votes
0answers
58 views
Logging stack trace like Elmah but for class library / winform projects
In ASP.NET there is Elmah that I can just nuget and it will capture all error information, including stack trace. Is there something similar for class library projects or winform projects?
0
votes
1answer
108 views
stacktrace, callsite problem with logging facades
How do logging facades (if they do) solve the problem internally that they will add extra stacktrace frames to the log entry's context or obscure the callsite. It seems that in some facades (e.g. ...
0
votes
1answer
132 views
Outputting errors to browser in CherryPy
I am new to cherrypy, and can't seem to figure out how to have cherrypy emit a stacktrace or error message to my browser when an error occurs.
I am running cherrypy on apache with mod_wsgi, so its ...
0
votes
2answers
351 views
Examine logs from the past with logcat?
I'd like to examine stack traces from the last hours. I haven't found a proper logcat command. Does Android "forget" those logs?
First story:
When I find an unhandled exception in my co-workers ...
0
votes
1answer
300 views
CodeIgniter Stacl Trace
I want to log the stack trace from time to time in my application folder.
writing to the log the result of debug_backtrace() , will cause to:
Fatal error: Allowed memory size of 33554432 bytes ...
0
votes
3answers
392 views
How to log an application's entire stacktrace in .net
I've just started work on an existing .net application with about 40 active projects. While familiarizing myself with the project, I find myself constantly stepping through the application just to ...