Tagged Questions

9
votes
6answers
456 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 …
8
votes
9answers
2k views

Tool to trace local function calls in Linux

I am looking for a tool like ltrace or strace that can trace locally defined functions in an executable. ltrace only traces dynamic library calls and strace only traces system calls. For example, …
7
votes
4answers
2k views

How to add (simple) tracing in C#?

I want to introduce some tracing to a C# application I am writing. Sadly, I can never really remember how it works and would like a tutorial with reference qualities to check up on every now and then. …
5
votes
4answers
1k views

log4net versus TraceSource

In this thread many people have indicated that they use log4net. I am a fan of TraceSources and would like to know why log4net is used. Here is why I like trace sources: Pluggable listeners - XML, …
4
votes
4answers
154 views

XDebug trace gui?

Hey, I'm trying to find a gui to parse xdebug trace files. Although you can make them human readable, the sheer number of lines makes it unusable. I'm looking for something like kcachegrind but for a …
4
votes
5answers
1k views

See trace() of Flash when running in browser

Whats an easy way to see the trace() of Flash/Flex movies when running in any browser?
4
votes
7answers
751 views

How can I add a Trace() to every method call in C#?

I am having a hard time tracking down a lock issue, so I would like to log every method call's entry and exit. I've done this before with C++ without having to add code to every method. Is this …
4
votes
2answers
427 views

Tracing write access to class instance/memory range in gdb

Hi, I am trying to debug a small operating system I have written in an university course in C++. At runtime somewhere one of my objects is getting corrupted. It seems like this happens due to …
4
votes
3answers
805 views

How to PRINT a message from SQL CLR function?

Is there an equivalent of PRINT 'hello world' which can be called from CLR (C#) code? I'm trying to output some debug information in my function. I can't run the VS debugger because this is a …
4
votes
4answers
714 views

Interpreting Stacks in Windows Minidumps

As someone who is just starting to learn the intricacies of computer debugging, for the life of me, I can't understand how to read the Stack Text of a dump in Windbg. I've no idea of where to start on …
4
votes
5answers
877 views

Getting stack traces on Unix systems, automatically

What methods are there for automatically getting a stack trace on Unix systems? I don't mean just getting a core file or attaching interactively with GDB, but having a SIGSEGV handler that dumps a …
3
votes
2answers
113 views

What are best practices for event id management?

I'm trying to figure out how to manage my event ids. Up to this point I've been putting each event id in each method manually with each step in a method numbered sequentially. This doesn't allow me …
3
votes
4answers
100 views

Detect Who Created a Thread (w. Eclipse)

How can I find out who created a Thread in Java? Imagine the following: You use ~30 third party JARs in a complex plugin environment. You start it up, run lots of code, do some calculations and …
3
votes
2answers
77 views

How do I describe a local function to (trace)?

In common lisp, the function (trace name) can be used to see output about the calls to a function. If my function is declared with local scope, how do I describe it to trace? eg, how do I trace bar, …
3
votes
4answers
309 views

Trace and Debug statements.

Im a little confused over how to use the .NET Trace and Debug classes. Why would you bother using Trace instead of Debug? Trace.TraceError() Trace.TraceInformation() Trace.Assert() …

1 2 3 4 5 9 next
15 30 50 per page