Questions tagged [trace]

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

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

It is typically used during debugging in order to provide information to show the actions taken by code.

2716 questions
1
vote
0 answers

Enable \ Disable C# Tracing Not working

I created a webapi project and have used the following in the webconfig
1
vote
1 answer

Visual Studio .NET C# executable traces

i've got a question, is it possible to identify the creator of a .NET assembly, just with traces from VisualStudio within the assembly ? Or can you even get a kind of unique ID of the creator out of it? I don't mean the application information like…
Chilln
  • 228
  • 4
  • 15
1
vote
4 answers

Java application profiling / tracking

I have a closed source Java application for which vendor has provided APIs for customization. As I have no other documents, i rely completely on the API's javadoc. I want to trace what methods are actually called in different classes for a…
Saravanan M
  • 4,697
  • 5
  • 35
  • 37
1
vote
1 answer

How to combine multiple ctags-like tags tools?

Ctags is the most famous tags tools. However, there are some disadvantages of ctags, and there are some better choices vary from target languages to languages. For example, for Ruby, I prefer to use ripper-tags. And for JavaScript, people often use…
lazywei
  • 11,955
  • 5
  • 20
  • 25
1
vote
1 answer

How to draw a search tree in prolog?

I need to know how can I draw a search tree for a specific query and how can I trace a code in prolog, and here is an example: mystery([], []). mystery([b,a|XS], [z,z|YS]) :- mystery(XS, YS). mystery([X|XS], [X|YS]) :- mystery(XS, YS). a) Draw the…
user3502598
  • 63
  • 1
  • 5
1
vote
1 answer

How to add my driver's WPP provider to a Windows Performance Recorder profile?

I have a Driver configured with WPP tracing. I'm interested in seeing my driver's WPP tracing messages appearing in the WPA timeline, alongside the rest of the system events. I tried adding the driver's WPP provider GUID as an EventProvider to a…
Sirotnikov
  • 444
  • 4
  • 10
1
vote
1 answer

Is there are way to prevent apitrace from tracing the release version of an OpenGL program?

Is there a way to prevent apitrace from dumping OpenGL calls? Currently the apitrace can dump everything, is there a way to stop it for release version?
emailhy
  • 780
  • 9
  • 22
1
vote
1 answer

When using EventSource, should I log two events, or compute the duration and log only one?

Assume I have some method that I want to trace performance information for. Using System.Diagnostics.Tracing.EventSource, I can see two logical ways of doing this; first, one could write two events, one at the start, and one at the end, and then the…
Mark
  • 11,257
  • 11
  • 61
  • 97
1
vote
0 answers

C# web api tracing one per request

Is there an easy way in C# Web API to enable tracing, but only one entry per request? This entry should contain all the available information about the request - and possibly about the response as well (if at all possible). Overriding the default…
dabs
  • 727
  • 1
  • 7
  • 23
1
vote
1 answer

Can match specifications be used when tracing messages in Erlang?

When tracing function calls in Erlang match specifications can be used to narrow down the set of function calls generating trace messages. Is there a way to use match specifications to filter out messages when tracing sent or received…
Karl Marklund
  • 485
  • 1
  • 4
  • 10
1
vote
0 answers

GDB: Lessfs; How to Trace

I am trying to trace this open source program called lessfs: and inline data deduplication filesystem for linux, but I am having trouble stepping through step by step using GDB Lessfs can be found here: http://www.lessfs.com/wordpress/ Are there any…
humblebeast
  • 303
  • 3
  • 16
1
vote
1 answer

How i can catch data, sended by compiled flash applet to server?

I have some compiled flash applet (swf) on web page, which interact with remote server by sockets. How i can catch sended data, without using complex sniffer, if possible. Thanks!
Golovko
  • 609
  • 4
  • 8
  • 8
1
vote
1 answer

WPF tracing events issue

I have some problem filter tracing events. Here's my code: PresentationTraceSources.Refresh(); Stream myFile = File.Create("trace.txt"); listener = new…
1
vote
1 answer

Tracing Mhash Files (Hashing)

I am trying to trace how this open source program, mhash computes it's hashing I can run the program successfully by using using the following commands: gcc -o example example.c -lmhash (also, mhash is currently installed, and I am running Ubuntu…
humblebeast
  • 303
  • 3
  • 16
1
vote
1 answer

Recursion and order of statements execution

This question deals with how the statements and those involving recursion are executed, and in what order Ruby will handle the,. Specifically, as I've been learning online, I have found that Ruby does not follow Last in first out convention in a…
fonz
  • 338
  • 3
  • 11
1 2 3
99
100