Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
4answers
18k 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. ...
24
votes
5answers
5k 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, ...
18
votes
6answers
1k views

How to “debug” Haskell with printfs?

coming from the Ocaml community, I'm trying to learn a bit of Haskell. The transition goes quite well but I'm a bit confused with debugging. I used to put (lots of) "printf" in my ocaml code, to ...
18
votes
10answers
9k 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, ...
16
votes
1answer
8k views

How to define custom TraceListener in app.config

I have implemented a custom trace listener (derived from TextWriteTraceListener) and now I would like to set my application to use it instead of standard TextWriteTraceListener. First I added default ...
12
votes
3answers
3k views

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 system without taking the server down. The documentation is opaque (to put it mildly) and ...
11
votes
4answers
244 views

Automatic logging for Python

I've worked on codebases for a number of big web projects in Python, and I always see a lot of logging lines in the code, such as: def report_view(request): log('report view started') try: ...
11
votes
3answers
326 views

Tool for tracing and visualisation of pthread behaviour in Linux

I am eager to find a tool that allows me to trace the behaviour of the pthreads in a program I am working on. I am aware that there where similar questions asked before, see here and here . As it ...
11
votes
8answers
14k 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?
10
votes
3answers
5k views

Redirect Trace output to Console

Let's say I'm working on a little batch-processing console app in VB.Net. I want to be able to structure the app like this: Sub WorkerMethod() ''//Do some work Trace.WriteLine("Work progress") ...
9
votes
3answers
617 views

Tracing pthread scheduling

What I want to do is create some kind of graph detailing the execution of (two) threads in Linux. I don't need to see what the threads do, just when they are scheduled and for how long, a time line ...
9
votes
7answers
3k 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 ...
8
votes
9answers
406 views

Live javascript debugging by recording function calls and parameters

Is there a debugging system that allows me to record javascript function calls and their parameters as they occur? this would allow me to trace and debug applications in live/client situations without ...
8
votes
3answers
360 views

Is there a way to trace through only project source in Delphi?

I'm using Delphi 2010 and I'm wondering if there's a way to trace through code which is in the project without tracing through calls to included VCLs. For example - you put in a breakpoint and then ...
8
votes
3answers
7k 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 ...
7
votes
2answers
1k views

Any reason why PresentationTraceSources.TraceLevel=High would not print any info to the output window?

I've been trying to get to the bottom of an issue with binding the SelectedItem of my ComboBox and since I've had not success thusfar I started looking at ways to get more detailed debugging ...
7
votes
7answers
4k 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 ...
6
votes
3answers
111 views

GDB unused variable

Is it possible to get the value of unused variable using GDB? Is there some configuration for GCC so that the garbage value of the unused variable will be shown not 'optimized out'? c file: ...
6
votes
1answer
81 views

.NET Tracing: What is the “Default” listener?

Every example of tracing in .NET people remove the "Default" listener: <configuration> <system.diagnostics> <sources> <source name="TraceSourceApp" ...
6
votes
1answer
2k views

How to use TraceSource across classes

I was recently studying documentation on TraceSource. Microsift says that TraceSource is a new way and should be used instead of old Trace class. // create single TraceSource instance to be used for ...
6
votes
3answers
223 views

C/C++ Question about trace-programming techniques

I have the following question and from a systems perspective want to know how to achieve this easily and efficiently. Given a task 'abc' that has been built with debug information and a global ...
6
votes
2answers
241 views

Can I output Trace messages to a separate window in Visual C# 2008 Express?

Console, Debug, and Trace messages all seem to be displayed in the "Output" window, which is fine in most cases, but I'd like to have my Trace messages displayed separately (so they're not interleaved ...
6
votes
2answers
814 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 ...
6
votes
1answer
3k views

How can I generate a complete trace.axd in ASP.NET MVC?

On my application, after enabling ASP.NET Tracing in an ASP.NET MVC application, the time calculation statistics were off by a factor of 5000. I have a page that is taking between 7 and 9 seconds to ...
6
votes
4answers
710 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() ...
6
votes
11answers
8k views

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 an intermediate function) calls itself, blah, blah. And, of ...
5
votes
1answer
457 views

Does ASP.NET Tracing work in MVC2 Views?

I have a VS 2010 MVC2 .NET 4.0 web application. ASP.NET tracing is enabled both in the Page directive (Trace="true) and in the Web.config: <trace enabled="true" requestLimit="10" ...
5
votes
5answers
2k views

WCF Tracing. How I can get the exact reason for closing connection?

In my WCF service, when trying transfer large data I constantly get an error: *The underlying connection was closed: The connection was closed unexpectedly* I want to know what particular reason ...
5
votes
6answers
1k views

Formatting trace output

I'm using TextWriterTraceListener to log diagnostics messages to a text file. However I wan't also to log a timestamp of every trace message added. Is it possible to define a kind of formatter for the ...
5
votes
2answers
2k views

Tracing write access to class instance/memory range in gdb

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 accidentally ...
5
votes
3answers
1k views

Does the .Net TraceSource/TraceListener framework have something similar to log4net's Formatters?

I've begun to the the built-in TraceSource and TraceListener classes and I would like to modify the output format of the events independently of the TraceSources and TraceListeners. It seems that the ...
5
votes
3answers
1k views

No trace info during processing of a cube in SSAS

When I process a cube in Visual Studio 2005 I get following message: Process succeeded. Trace information is still being transferred. If you do not want to wait for all of the information to ...
4
votes
1answer
154 views

PHP trace for Form post

A little background, I have a client that has a legacy php site that has been converted to python/django in the last 12 months. However they are still using the php site while phasing it out. Some ...
4
votes
1answer
321 views

WCF tracing & message logging - trace level warning

Assume I have a config file which looks like this: ... <system.diagnostics> <sources> <source name="System.ServiceModel" ...
4
votes
3answers
789 views

Using annotations for trace logging

I've been working with a codebase of a company that has a policy of writing lots of trace logging. So pretty much every method has a piece of code that starts like this: String LOG_METHOD = ...
4
votes
7answers
645 views

webservices trace / log

I have set of web services and I want to add a trace layer. I don't want to modify each web service since I have many. I would like to write log every entering to a web service: name of web service ...
4
votes
3answers
744 views

C#: Best Practices Debug.Print

What is the best practice regarding Debug.Print statements? Should I litter my class methods with Debug.Print statements or should I avoid Debug.Print altogether? If Debug.Print statements are ...
4
votes
3answers
918 views

Using Console.Out.WriteLine vs Trace.WriteLine in nUnit either running in isolation or within reSharper or TeamCity

I vaguely remember reading "something" "somewhere" about using Trace.WriteLine over Console.Out.WriteLine in nUnit possibly in the context of reSharper or TeamCity but I cannot remember the details. ...
4
votes
4answers
192 views

Any libraries out there that extend System.Diagnostics.Trace?

Any there any good libraries out there that extend System.Diagnostics.Trace? Some of the features I am looking for. Rolling logs smtp And "Use log4net" is not an answer. The reason being is that ...
4
votes
3answers
3k views

Trace in Visual Studio Testing (Migrating from NUnit)

In NUnit, I'm used to writing Trace statements in the test, and having them show up in the trace tab of the NUnit gui. On a new project, I'm moving to the built in Unit Testing in Visual Studio ...
4
votes
7answers
3k views

Compile Flex application without debug? Optimisation options for flex compiler?

I have created a simple test application with the following code var i : int; for (i=0; i<3000000; i++){ trace(i); } When I run the application, it's very slow to load, which means the ...
4
votes
5answers
3k views

Automate tracing in GDB

I have been trying to find a way for some time to automate the progress in GDB of tracing the control flow of a program. Even just a simple way of automating the 'n' command so you can see what order ...
4
votes
2answers
252 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
1answer
31 views

How do I trace the usage of functions and variables through a C++/Javascript project

I'm looking to map out the usage of Javascript in the 0 A.D. project, such as the flow of operations when the mouse is clicked. I have found functions that define parts of the process, but the points ...
3
votes
4answers
90 views

C# simplest trace or log

What is the simplest way to do a trace or log in C# windows form application? Doesn't have to save to file, can be showing at runtime. What would be the simplest thing to implement? thanks
3
votes
1answer
93 views

Using Trace within Global.asax

I'm struggling to output the messages written via Trace.WriteLine within the Global.asax, they don't appear in the Trace.axd. I've added a WebPageTraceListener and a TextWriterTraceListener as ...
3
votes
4answers
158 views

Equivalent of SQL Server trace for Oracle 10g?

I've got a bad code duplication problem where we cannot tell which versions of packages/procedures are being used. i.e. I have different packages with procedures of the same name and I need to be sure ...
3
votes
1answer
128 views

Unintended consequence of dialing down tracing using Ent-Lib, no error logging

I've run into an unexpected problem using enterprise library tracing and exception logging. What I've noticed is that when I dial down the trace logging using the category filters in 'App.Config' I'm ...
3
votes
2answers
133 views

stop traces in swc-library (actionscript3)

There are a lot of traces embedded in a swc-library I'm using in flash-builder. Can I get rid of them without touching its code? How? Thanks
3
votes
3answers
513 views

Logging the data in Trace.axd to a text/xml file

In trying to track down a performance issue that is only occurring in our production environment, we have enabled tracing within the app so see method calls and page load times. This is working well ...

1 2 3 4 5 9