Top "Trace" questions

A trace is a log of execution of a process or method.

.NET Trace to a file not working

I am trying to track strange things going on in my Windows Forms application with a TextWriterTraceListener pointed to a …

c# .net trace
How to trace T-SQL function calls

I'm trying to debug a rather complicated formula evaluator written in T-SQL UDFs (don't ask) that recursively (but indirectly through …

tsql debugging trace user-defined-functions
Xdebug trace GUI?

I'm trying to find a GUI to parse and view Xdebug trace files. Although you can make them human readable, …

php user-interface trace xdebug
how to trace function call in C?

Without modifying the source code, how can i trace which functions are called and with what parameters, when some function(…

c trace call-hierarchy
enable linux kernel driver dev_dbg debug messages

is there a simplest possible way to enable linux kernel driver dev_dbg debug messages (actually it's a trace style …

linux debugging kernel driver trace
How do I trace methods calls in Java?

Consider the two simple Java classes below: First Example class Computer { Computer() { System.out.println("Constructor of Computer class."); } void …

java methods call trace
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 …

c# logging trace
Using trace and dbg in Erlang

I am trying to start using erlang:trace/3 and the dbg module to trace the behaviour of a live production …

debugging erlang trace
In SQL Server, how to move/import a multiple .trc files to a trace table

I have a set of rollover .trc files recorded with Sql Profiler. mytrace.trc mytrace_1.trc mytrace_2.trc mytrace_3.trc …

sql-server sql-server-2005 trace sql-server-profiler
How to trace every method called

I have an existing project where I would like to find out all calls being made and maybe dump into …

c# logging trace