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

learn more… | top users | synonyms

0
votes
0answers
18 views

Mono ASP.NET Trace does not work

I have a trouble with ASP.NET Trace.axd file. Config file is next: <configuration> <system.diagnostics> <trace autoflush="true" indentsize="4"> <listeners> ...
0
votes
0answers
21 views

how to trace code in .net runtime

I want to do Performance Monitoring in my project,and i didn't want to add trace code in every function. I want to do like(auto trace): public class ManagerBase { public void Trace() ...
1
vote
2answers
25 views

What kind of privilege do we need to trace a process in linux

It seems that we can trace other processes with trace functions? Operating system is obliged to provide such an interface. Obviously we can obtain others data such as hidden password when they call a ...
1
vote
0answers
28 views

Modifying Bresenham Line Grid Algorithm

Basically, I am using Bresenham's line algorithm to detect ALL squares that a line touches. However, I am not using 1x1 pixels. I am using 64x64 size grid squares and thus the point A of a line does ...
0
votes
1answer
37 views

Python tkinter trace method

I am trying to activate callback function as the user type in to the tkinter entry box. According to effbot.org, You can use the trace method to attach “observer” callbacks to the variable. The ...
1
vote
0answers
21 views

Why won't Firefox trace to flashlog.txt in Ubuntu?

Okay me and my friend are about to tear our hair out trying to configure the Adobe Flex SDK to work properly on our Ubuntu machine. We have installed and configured the SDK to compile ActionScript ...
1
vote
0answers
17 views

Objective-C: NSStrings dump, restricting debuggers & trace checking

I've been developing for Objective-C for some time now and one thing that really scares me is how easy it is to mess around with a compiled App and get information out using standard tools like the ...
1
vote
1answer
26 views

Is there any merit in 'Aspect Based Tracing'?

Just to be clear, my meaning of 'aspect' is a horizontal factor of the application's functions, not intercepting all method calls as in Aspect Oriented Programming. I have just discovered the beauty ...
0
votes
1answer
28 views

how to trace for a javascript function which executes the drop down menu div/css values

Is there a way to change the drop down menu's sub menu display location(x and y value)? please check here for the template http://buyshop.ethemeuk.com/magento/themeview/?id=dark&redirect=0 ...
0
votes
0answers
8 views

awk for no of packets, end-to-end delay analysis

I have this trace file from my algorithm which is Poison arrivals from nodes 2 and 4 to 0 to 1 to 8 (destination) in a wired mesh network. the sources are 2 and 4. This is done with in ns 2.35 on ...
0
votes
2answers
15 views

SQL Server Profiler - how do I find which database is being connected?

I've Googled this with no success. I'm using SQL Server Profiler for SQL Server 2008 R2, and I've ensured that for the 'Events Selection' of the trace: I'm reporting all columns for Security Audit ...
0
votes
2answers
18 views

How to Block Particular Areas from my WebServer

I'm using a Glassfish webserver to run my website. I'm still developing the website and I'd like to trace the location from where people attempt to use the website. In particular, I would like to be ...
0
votes
1answer
18 views

Is zipkin suitable for tracing method invocation?

I read about zipkin, but from my understanding, zipkin is suitable for tracking history of network requests and time (via Finagle). However, is it possible for me to use zipkin to track java method ...
0
votes
0answers
197 views

Error opening trace file: No such file or directory (2) Can't Find Solution

I can't get my app to work! It has no compilation errors, installs perfectly. But when I click a custom button the application stops. I copied the whole java and xml files and made a simple activity, ...
-1
votes
0answers
16 views

solving trace norm equality [closed]

under what conditions can we solve trace(AB)=0 ? or more specifically, when will trace(AB)=0 implies that trace(B)=0. This occurs to me when A was a Positive semidefinite matrix, and B was a ...
0
votes
2answers
34 views

Callgrind chronological log of functions called

I would like to obtain a chronological log of the functions invoked by a C++ program, preferably in a text file, using valgrind. For the example C++ program (simple.cpp) below: void baz(){ } void ...
0
votes
4answers
48 views

PL-SQL bind variables in TCL

Could some one explain in the following TCL source code: set sql "SELECT PROD.KEY || ' {' || PARAMETERS || '}' \ FROM PRV_PROD_MAPPING PROD \ WHERE PROD.SERVICE_ID = :service_id \ ...
0
votes
0answers
27 views

Why am I getting all this extra Debug text spam in my Azure WADLogsTable?

I am logging my worker role to the normal WADLogsTable. every line has appened, some spammy text which I would prefer not to include. Here's some sample text: About to start main worker role loop.; ...
0
votes
1answer
52 views

Using gdb to compare assembly traces

I have a shared object file that I don't have the source for. I am interested in what happens when entering a specific function. When entering this function in a certain situation (when there is a ...
0
votes
1answer
27 views

WCF Logging with parameters and method name

Im trying to keep a log of all the calls to my WCF Restfull service. I need to be able to view method name, all the parameters that is passed to it, and any response (string, object, list) Here is my ...
1
vote
1answer
42 views

Show line number object is destructed

I'm implementing a trace mechanism that outputs a log line when a function is entered and upon exit (when the trace object is destructed). I would be interested in also outputting the line number the ...
0
votes
1answer
16 views

ASP.Net how to render all Trace section in contor

The default Trace section renders outside the tag and breaks the page design Please recomnd the way to display the Trace a the bottom of page and may be use come scrolling or collapsing.
0
votes
3answers
31 views

actionscript 3 - use textfield text in for loop

I have 5 dynamic textFields on stage. They have instance names of txtField_1, txtField_2 through txt_Field_5. if I wanted to trace the data inside it, I would write: trace(txtField_1.text); ...
0
votes
1answer
50 views

android: google maps API. Show route history

I'm building a sport/running app, at the moment I can just see the usual blue dot related to my position, I'm trying to figure out how to show on the map the history of my path during the running ...
1
vote
1answer
39 views

How should I make a custom Trace:Listener for displaying trace info on a web page?

I have an MVC4 app that has one or two long running requests. For this, first, iteration I will be leaving these as synchronous tasks. I would, however, like trace output from these tasks to be ...
1
vote
1answer
28 views

JUnit - Access failure messages in tearDown()

I did search for this already, but only found one topic on NUnit. I guess JUnit still is a bit different to NUnit so I am going foreward to ask my question ;-) I have one test case with a setUp(), a ...
2
votes
0answers
48 views

nodeunit test and trace.gl

How to trace nodeunit test using trace.gl I tried in 2 ways: $ node ~/Dropbox/tracegl.js ./path/To/My/NodeunitTests. And then run my unit test from that directory in another console. $ node ...
2
votes
0answers
60 views

gdbserver tracepoint arm support

I compiled gdbserver 7.6 for arm with: cd /gdb-7.6-src/gdb/gdbserver ./configure --target=arm-linux --host=arm-linux make CC=/path/to/cross-compiler-gcc Then I compiled gdb 7.6 for arm with: cd ...
1
vote
0answers
37 views

wcf client trace svclogfile fault exception

I need help figuring out why the Process Action failed This is my wcf client connecting to an external service. My svclog has the following <E2ETraceEvent ...
-1
votes
3answers
48 views

How To Tracking URL Link in other website

I want to know how to programming the script for tracking purpose. Such as I put the link on my blog, and I can know which IP or which website is using my URL Link on their website? I have a live ...
5
votes
2answers
123 views

Cannot use Trace.WriteLine in Windows Store App

In Windows Store application I can use: System.Diagnostics.Debug.WriteLine("Test"); But replacing Debug with Trace gives the following error: CS0103: The name 'Trace' does not exist in the current ...
2
votes
1answer
45 views

How can I trace a multi-thread software?

I have a multithreading client-server software and it's a bit hard to debug when 10 client is connected. I have a few questions regarding the tracing. How can I trace a only a certain file or class ...
0
votes
1answer
22 views

Trace API-calls from app

I have an app on my phone that is communication with an API. This API is not fully documented, and some data displayed in the app, I don't know how to reach. What I wonder is if it's possible in some ...
1
vote
1answer
19 views

where to find documentation about the special php exec method using back quotes ?

I have some sample program that runs a php script that does some exec command by using the syntax: echo "Do invoke native commmand: "; `curl "http://localhost/somescript.php`; Those " ` " sign ...
0
votes
3answers
38 views

Java disable stack trace on a specific call?

I want to disable one error message produces by a socket timeout, because it's filling my console (Linux, terminal). The code: public ThreadListenResponseQuery(DatagramSocket socket){ this.socket ...
0
votes
2answers
51 views

how to copy linked file thru tcl

I want to copy file thru tcl proggraming , these files are linked. this is the code: if { [file type $sfile] == "link" } { set fget [file readlink $sfile ] } file copy ...
0
votes
0answers
9 views

Tracing Firewire commands

is there a program that dumps out commands sent to a device on the Firewire port? I know there a some available to analyze data sent via USB ports (e.g. http://www.usblyzer.com or ...
0
votes
2answers
37 views

Diagnostic Monitor Trace Listener

I would like to know if it is possible to modify the way the Trace is recording trace information ? Trace.Listeners.Add(new DiagnosticMonitorTraceListener()); ...
0
votes
1answer
23 views

Using trace to execute a proc in TCL

I have the following in a TCL/Tk app: proc greyout { } { puts "current part $DSM::Part" switch $DSM::Part { Doghouse { for {set entry 1} {$entry<17} {incr entry} { ...
0
votes
2answers
28 views

Using Tracepoints in GDB to track how often code is executed

I want to count how often a certain function or line of code is executed during a test run. My idea is to set a tracepoint using GDB at a line and then count how often the tracepoint is hit. Can ...
0
votes
2answers
120 views

Haxe Flixel Trace

Day one Haxe Flixel Coder. Stupid error, but Google isn't helping me. How do I trace to FlashDevelop output using Haxe, NME and Flixel. It works when executing using C++, but nothing for Flash! I've ...
0
votes
0answers
35 views

How to trace TempData in an MVC application?

I know we can trace Session data in ASP.NET application by enabling trace in config, and accessing "trace.axd" page in running session. Now I want to trace TempData in my ASP.NET MVC application, and ...
1
vote
1answer
67 views

HTTP requests trace

Are there any tools to trace the exact HTTP requests sent by a program? I have an application which works as a client to a website and facilitates certain tasks (particularly it's a bot which makes ...
0
votes
1answer
36 views

Break debugging after a TRACE call

Is it possible to break debugging as TRACE(the debugger message output macro) is called, the message from trace appears on output, but I am unable to break the debugger as it does. (Am using visual ...
0
votes
4answers
37 views

When tracing out variables in the console, How to create a new line?

So I'm trying to do something simple, I want to break up my traces in the console into several lines, using 1 console.log statement: console.log('roleName = '+roleName+' role_ID = '+role_ID+' ...
0
votes
0answers
42 views

pdb.set_trace() not working

When I insert import pdb; pdb.set_trace() in my code, it shows an error message: 'module' object has attribute 'set_trace' In the pdb.py file, there is the def set_trace() function. How can it ...
0
votes
1answer
53 views

How to trace the phone call in iOS?

I want to know how to trace the call information in iOS code. I just wanted it to create a application which will record the phone calls. Please help.
0
votes
0answers
19 views

Ruby set_trace_func does not trace certain functions

Why doesn't set_trace_func trace things like Fixnum + ? Is there a way to make set_trace_func trace these?
1
vote
1answer
106 views

MIPS Assembly program to calculate the trace of a matrix after taking an integer input

The following is my MIPS assembly code which refuses to work for some reason. SOMEONE please rescue me, i've been stuck for 3 weeks!!! I'm supposed to read in an int n, square it, then read in the the ...
0
votes
1answer
20 views

Where does PresentationTraceSources.Refresh look for the app.config file?

I am trying to better understand PresentationTraceSources. The docs for the Refresh() method say "Refreshes trace sources, by forcing the app.config file to be re-read." Where does it expect to find ...

1 2 3 4 5 15