active questions tagged trace - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T19:35:53Z http://stackoverflow.com/feeds/tag/trace http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1862040/is-there-a-way-to-do-on-demand-flushing-of-wcf-trace 0 Is there a way to do on demand flushing of WCF trace? Piotr Owsiak 2009-12-07T18:45:00Z 2009-12-07T18:45:00Z <p>Just like there is a command to flush IIS7 logs: </p> <pre><code>netsh http flush logbuffer </code></pre> <p>I'm wondering is there a similar command to flush WCF trace log on demand.</p> http://stackoverflow.com/questions/1858321/trace-output-not-getting-logged-in-output-file-at-times 0 Trace output not getting logged in output file at times. Mini 2009-12-07T07:03:10Z 2009-12-07T09:22:26Z <p>I'm using TextWriterTraceListener to log error messages to a text file.The TraceOutputFile has been mentioned in the web.config file as "trace.log.txt". The error messages are getting logged to the trace.log.txt. But at times I notice that some files are getting generated randomly under root folder with the exception details instead of logging to the trace.log.txt.</p> <p>This is not happening in any particular page and hence I am unable to detect the reason as to why these files are getting generated.Ex:14dbc20a-9eb8-4fec-b6bd-54400db2ceatrace.log.txt .</p> <p>Can u suggest me any circumstances when this might happen?</p> http://stackoverflow.com/questions/1419583/net-network-tracing-only-for-debug-builds 0 .NET Network tracing only for Debug builds Omar Shahine 2009-09-14T03:40:23Z 2009-12-04T21:47:51Z <p>I have enabled .NET network tracing per this article here:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ty48b824.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ty48b824.aspx</a></p> <p>Unfortunately, the log files are generated for both Release and Debug builds even though TRACE is not enabled for my Release build.</p> <p>I'm trying to find a way to leave the logging enabled for the Debug build and disabled for the Retail build but I am at a loss for how to do this. I have tried all sorts of things and none seem to work.</p> http://stackoverflow.com/questions/1834261/call-tracing-windows-driver 1 Call Tracing Windows Driver Aram Hăvărneanu 2009-12-02T16:52:12Z 2009-12-03T07:25:24Z <p>I wish to be able to record, in real time, the activity of a kernel mode driver (I have the full symbols for it). It's a HID miniclass driver. I wish to record the execution of calls in this driver (stacktraces every time an IRP enters and leaves the driver).</p> <p>Is this possible (maybe with EWT and/or WPT)?</p> http://stackoverflow.com/questions/1720240/how-to-write-trace-output-to-a-text-file-without-a-web-server-in-as3 1 How to write trace output to a text file without a web server in AS3 martin 2009-11-12T06:09:29Z 2009-12-02T05:45:12Z <p>I have an application that writes traces with a timestamp when certain items are clicked or accessed. I need to write these to a text log file so that they can be accessed remotely.. The device the app runs on doesn't have a web server and doesn't run the flash debug player, os is xp. How can I send these traces to a text file? I noticed <a href="http://arthropod.stopp.se/" rel="nofollow">Arthropod</a> writes to an html file, but I need to do this automatically without interaction.. any suggestions? </p> http://stackoverflow.com/questions/1818366/how-to-use-trace-with-ascii-under-unicode-mfc-environment 1 How to use TRACE with ascii under unicode MFC environment? Victor Lin 2009-11-30T07:42:06Z 2009-11-30T08:53:43Z <p>I am developing a MFC program under windows CE. It is unicode by default. I can use TRACE to print some message like this</p> <pre><code>TRACE(TEXT("Hey! we got a problem!\n")); </code></pre> <p>It works fine if everything is unicode. But however, I got some ascii string to print. For example:</p> <pre><code>// open the serial port m_Context = CreateFile(TEXT("COM1:"), ...); int rc = ReadFile(m_Context, buffer, 1, cBytes, NULL); // Oops!! We got a problem, because we can't print a non-unicode string TRACE(TEXT("Read data: %s\n"), buffer); </code></pre> <p>I read string through com1 from a GPS module. It send text like this "$GPSGGA,1,2,3,4". They are all encoded with ASCII. I want to print them out with TRACE, how can I do?</p> <p>Thanks.</p> http://stackoverflow.com/questions/806614/how-to-trace-a-certain-object-in-vc-6 0 How to trace a certain object in VC++ 6 zhengtonic 2009-04-30T12:16:11Z 2009-11-26T08:19:09Z <p>Hello,</p> <p>i was wondering how to trace a certain object in VC++6. It can be done by tracing the unique object ID with "Trace Points", in more recent versions of visual studio. I still haven't figured out how to do this in VC++ 6. Maybe you guys can point me in the right direction.</p> <p>Thanks in advance!</p> <p>Best regards,</p> <p>zhengtonic</p> http://stackoverflow.com/questions/1767899/how-to-customize-visual-studio-console-debug-window 0 How to customize Visual Studio Console Debug window? McKAMEY 2009-11-20T02:10:50Z 2009-11-22T07:55:51Z <p>I'm curious if anyone has figured out how to create their own Debug Output window in Visual Studio. For applications without a real console window (e.g. web apps), writing Debug or Trace messages end up in the Debug output window along with every other message (including overly verbose DLL loading messages).</p> <p>It would be great if we could create a new named window which we could output to. Out of the box, there is "Debug", "Refactor" and "Build". A friend noted that TFS adds its own named window, so I'm hoping that there is some extensibility built in.</p> <p>Any ideas? Thanks in advance.</p> <p><strong>Edit:</strong> I'm mostly curious if VS has any built in extensibility points for filtering. OR if there is a way to leverage the categories that Tracing allows you to append. It seems silly to me to add a label if it does nothing but append it to the front of the message in the same console.</p> <p><strong>Edit:</strong> I know about <code>Trace</code> and <code>TraceListener</code>. This question is about if there is any way to control/create a new Visual Studio's console debug window.</p> http://stackoverflow.com/questions/1768337/php-understanding-code-via-function-or-file-tracing-without-xdebug 0 PHP: Understanding code via function or file tracing (without XDebug) Pistos 2009-11-20T04:26:35Z 2009-11-20T14:18:45Z <p>I have inherited a moderately large PHP codebase. In order to better understand how it works, I'd like to be able to print to logs a function or file trace whenever I hit a page, so I can correlate pages with source code. Are there any tools I can install? I have root on the server, and so have the ability to install anything as far as Apache or PHP add-ons goes.</p> <p>I have heard about XDebug, but when reading up on installation, I've discovered that it is not compatible with Zend Optimizer. Unfortunately, this codebase requires Zend Optimizer, so XDebug does not appear to be an option for me at this time.</p> <p>I'm developing under Linux.</p> http://stackoverflow.com/questions/1767307/whats-a-good-checklist-for-instrumenting-my-net-application 0 What's a good checklist for instrumenting my .NET application Qwerty 2009-11-19T23:24:51Z 2009-11-20T02:29:43Z <p>Hello all, I'm looking for a best practices checklist for instrumenting my code. Not so much what tools to use (I'm a System.Diagnostics.Trace fan myself) but just where you should put tracing statements in a "typical" application.</p> <p>If you have a tip (or tips) can you please provide them here. Maybe distinguish stuff that you absolutely must include versus things that could potentially save your bacon.</p> http://stackoverflow.com/questions/1455339/flash-as3-getting-this-error-access-of-undefined-property-basic-scope-help-ne 0 Flash AS3: Getting this error: Access of undefined property - basic scope help needed :( Leon Gaban 2009-09-21T16:10:35Z 2009-11-18T17:07:59Z <p>I'm still used to the AS2 style of all code on 1 frame, I'm trying to code AS3 in class files and I'm having a problem with a basic package setup. Scope issues are killing me with trying to learn AS3. Below is my package code, I don't have any other class files, just trying to return a simple trace.</p> <p>The error I'm getting after I run the code below: <strong>1120: Access of undefined property tc.</strong></p> <p><hr></p> <h2>Main Class</h2> <pre><code>package { import src.*; import flash.display.MovieClip; // Custom imports to go here import src.tradeclass.TradeFrame; public class TraceClass extends MovieClip { public var tc:TradeFrame; public function TraceClass(traceText:String):void { // Constructor function } } tc = new TradeFrame("hello"); //TraceClass.TradeFrame("hello"); } </code></pre> <p><hr></p> <h2>Sub Class</h2> <pre><code>package src.traceclass { import src.*; import flash.display.MovieClip; public class TradeFrame extends MovieClip { public function TradeFrame(traceText:String):void { // Constructor function trace(traceText); } } } </code></pre> http://stackoverflow.com/questions/1742922/how-in-jboss-write-traces-to-separate-trace-file 0 How in jboss write traces to separate trace file Vladimir Bezugliy 2009-11-16T15:32:41Z 2009-11-16T15:38:45Z <p>How in JBoss to write traces to separate file?</p> <p>I would like to see traces about org.hibernate.SQL and org.hibernate.type in separate trace file.</p> <p>I added next appender and categories to jboss-log4j.xml but it does not help - jboss still writes traces into server.log.</p> <pre><code>&lt;appender name="HIBERNATE" class="org.jboss.logging.appender.DailyRollingFileAppender"&gt; &lt;errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/&gt; &lt;param name="File" value="/u1/trace/sql.log"/&gt; &lt;param name="Append" value="true"/&gt; &lt;param name="DatePattern" value="'.'yyyy-MM-dd"/&gt; &lt;layout class="org.apache.log4j.PatternLayout"&gt; &lt;param name="ConversionPattern" value="%d %-5p [%c] (%t) %m%n"/&gt; &lt;/layout&gt; &lt;/appender&gt; &lt;category name="org.hibernate.SQL"&gt; &lt;priority value="DEBUG"/&gt; &lt;appender-ref ref="HIBERNATE" /&gt; &lt;/category&gt; &lt;category name="org.hibernate.type"&gt; &lt;priority value="TRACE"/&gt; &lt;appender-ref ref="HIBERNATE" /&gt; &lt;/category&gt; </code></pre> http://stackoverflow.com/questions/1628916/trace-bpt-trap-when-calling-urllib-urlopen 1 Trace/BPT trap when calling urllib.urlopen dlo 2009-10-27T05:32:50Z 2009-11-14T00:46:08Z <p>For some reason I'm getting a Trace/BPT trap error when calling <code>urllib.urlopen</code>. I've tried both <code>urllib</code> and <code>urllib2</code> with identical results. Here is the code which throws the error:</p> <pre><code>def get_url(url): from urllib2 import urlopen if not url or not url.startswith('http://'): return None return urlopen(url).read() # FIXME! </code></pre> <p>I should add that this code is running on a CherryPy webserver with web.py.</p> <p>Someone requested a traceback. Unfortunately, there is none. <code>Trace/BPT trap</code> is outputted to the terminal and the process terminates. E.g.</p> <pre><code>dloewenherz@andros project $ sudo ./index.py 80 http://0.0.0.0:80/ # Here I visit the page which contains the get_url(url) method Trace/BPT trap dloewenherz@andros project $ </code></pre> <p>Edit: I am running OS X 10.6.2, web.py 0.33, Python 2.6.2, and CherryPy 3.1.2.</p> http://stackoverflow.com/questions/1725803/unique-value-in-stacktrace 1 Unique value in StackTrace? msawtatn 2009-11-12T22:19:11Z 2009-11-12T23:37:25Z <p>Background: I have written a generic logging library in .NET 3.5. Basically the developer needs to call the Begin() method at the beginning of their method and the End() method at the end of it. These methods do not take a parameter - the library uses the stacktrace to figure out where it came from. The library has a collection that keeps track of the call stack and writes out the elapsed time of each method.</p> <p>This works really well and I'm happy with it.</p> <p>But now we want to add it to the server. When multiple users are on the system, there is only one log file and the stack traces are lumped together. It's impossible to tell which thread is doing what.</p> <p>My question is this:</p> <p>Is there a way to retrieve a unique value from the StackTrace class or an indivdual StackFrame? What about using reflection? I would like to be able to create a seperate file for each user. At the very least, I'd like to be able to tag each line with the unique value so we can filter the file by this value when reviewing traces.</p> <p>We are using WCF TcpBinding as our server side communication protocol, if that helps. I am looking for a thread id, hashcode, address, something to distinguish where the call stack came from.</p> <p>Any ideas?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1724634/tracing-mouse-clicks-on-website 0 tracing mouse clicks on website sinisana 2009-11-12T19:13:36Z 2009-11-12T19:27:35Z <p>I am new to website designing and wanted to know couple of things.</p> <ol> <li>when some clicks on the link on my website say www.google.com, can i trace that how many people clicked on it.</li> <li>When i send out emails with attachments, can i record how many people opened those attachements. btw this is not yahoo or gmail, its my personal email with an ISP.</li> </ol> <p>if so, please put references so i can read them or explanation if possible</p> http://stackoverflow.com/questions/1664161/how-to-check-if-pdf-was-modified 0 How to check if pdf was modified stan 2009-11-02T22:32:24Z 2009-11-03T22:08:26Z <p>I have a pdf generated by 3rd party system. Using pdf editor or els software I have modified it. Is it possible to detect if pdf file was modified, without original file? 0 vote down check</p> <p>I will add some more details.</p> <p>There is no encryption and no signature features.</p> <p>Document is created by IT system. User receives document and modifies it.</p> <p>Is it possible to track that change somehow?</p> <p>I thought that all these applications leaves some data in PDF header or somewhere encoded inside file and it is possible to check it. However properties showed by windows explorer shows nothing... so I was interested if there is something smarter than viewing properties/header in explorer.</p> http://stackoverflow.com/questions/1637464/what-are-best-practices-for-event-id-management 3 What are best practices for event id management? BobTheBuilder 2009-10-28T14:06:39Z 2009-10-29T04:07:12Z <p>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 to effectively filter events in the event log. In order to use the filter in the event log, it seems that every logged event must have its own unique id.</p> <p>I could store them all in a table with the description linked to them, but then as my code executes, I'm logging "magic" meaningless event codes.</p> <p>I did a Google search, but I appear to be at a loss as to the correct keywords to use to get to the bottom of this issue.</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1625857/oracle-trace-file-browsers 1 Oracle Trace File Browsers? David Mann 2009-10-26T16:45:00Z 2009-10-26T17:33:59Z <p>Can anyone recommend a graphical tool to make browsing Oracle SQL Trace files easier? </p> <p>TKProf is great for summary info, but lately I am needing more detail on a specific run of a statement and end up going back to the trace file directly. Summarization and filtering would be pluses, but mainly looking for something with some basic drill down into detail for each statement. </p> <p>I stumbled upon the trace file browser in SQL Developer 1.5.5. It would be perfect if it didn't take minutes to load up multi-megabyte files. </p> <p>I have Toad 9.x but I can't seem to invoke the utilities for viewing trace files, possible I don't have that option licensed. Like so many features I find hints about it in the online help but can't seem to find the menu selections they mention in the help file or a clear connection to what needs to be licensed to enable the feature. </p> <p>Do you have any suggestions for any other tools I should investigate? </p> http://stackoverflow.com/questions/1417809/debugging-tracing-embedded-sql 0 Debugging/tracing embedded sql lk 2009-09-13T13:58:06Z 2009-10-23T20:00:04Z <p>Is there a way to trace/log sql from the code (not from the db side, but rather what the code thinks it's doing)?</p> <p>I am using Pro*C/C++: Release 8.1.7.0.0 for Oracle</p> http://stackoverflow.com/questions/198322/redirect-trace-output-to-console 2 Redirect Trace output to Console Joel Coehoorn 2008-10-13T17:19:31Z 2009-10-23T15:35:09Z <p>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:</p> <pre><code>Sub WorkerMethod() ''//Do some work Trace.WriteLine("Work progress") ''//Do more work Trace.WriteLine("Another progress update") ''//... End Sub Sub Main() ''//Do any setup, like confirm the user wants to continue or whatever WorkerMethod() End Sub </code></pre> <p>Note that I'm using <code>Trace</code> rather than <code>Console</code> for my output. This is because the worker method may be called from elsewhere, or even live in a different assembly, and I want to be able to attach different trace listeners to it. So how can I connect the console to the trace? </p> <p>I can already do it by defining a simple class (shown below) and adding an instance to the Trace's listeners colelction, but I'm wondering if there's a more accepted or built in way to accomplish this:</p> <pre><code>Public Class ConsoleTrace Inherits Diagnostics.TraceListener Public Overloads Overrides Sub Write(ByVal message As String) Console.Write(message) End Sub Public Overloads Overrides Sub WriteLine(ByVal message As String) Console.WriteLine(message) End Sub End Class </code></pre> http://stackoverflow.com/questions/1601217/settrace-in-python-redux 0 setTrace() in Python (redux) Leonidas 2009-10-21T14:31:24Z 2009-10-21T14:39:54Z <p>Apologies for reposting but I had to edit this question when I got to work and realized I needed to have an account to do so. So here it goes again (with a little more context).</p> <p>I'm trying to time how long a script takes to execute, and I am thinking of doing that by checking the elapsed time after every line of code is executed. I've done this before when the script has contained method definitions, but am not sure how it would work in this instance.</p> <p>So my question is: Is there a way to use the setTrace() function in a script that has no method definitions? i.e.</p> <pre><code>for i in range(1, 100): print i def traceit(frame, event, arg): if event == "line": lineno = frame.f_lineno print "line", lineno return traceit sys.settrace(traceit) </code></pre> http://stackoverflow.com/questions/1600726/settrace-in-python 2 setTrace() in Python Leonidas 2009-10-21T13:07:44Z 2009-10-21T13:57:24Z <p>Is there a way to use the setTrace() function in a script that has no method definitions? i.e.</p> <pre><code>for i in range(1, 100): print i def traceit(frame, event, arg): if event == "line": lineno = frame.f_lineno print "line", lineno return traceit sys.settrace(traceit) </code></pre> <p>so ideally I would want the trace function to be called upon every iteration / line of code executed in the loop. I've done this with scripts that have had method definitions before, but am not sure how to get it to work in this instance.</p> http://stackoverflow.com/questions/867788/compile-flex-application-without-debug-optimisation-options-for-flex-compiler 0 Compile Flex application without debug? Optimisation options for flex compiler? maoanz 2009-05-15T09:46:13Z 2009-10-20T23:46:59Z <p>I have created a simple test application with the following code</p> <p>var i : int; for (i=0; i&lt;3000000; i++){ trace(i); }</p> <p>When I run the application, it's very slow to load, which means the "trace" is running. I check the flash player by right-clicking, the debugger option is not enable. </p> <p>So I wonder if there is an option to put in compiler to exclude the trace. Otherwise, I have to remove manually all the trace in the program. </p> <p>Are there any other options of compiler to optimize the flex application in a maximum way?</p> <p>Thanks </p> http://stackoverflow.com/questions/1591968/how-to-output-trace-all-variables-and-values-in-a-flash-swf 0 How to output/trace all variables and values in a Flash swf Peter 2009-10-20T01:11:22Z 2009-10-20T01:11:22Z <p>Is there a simple way in Flash 8 when loading an swf or anywhere really to output all the loaded functions, movieclips, and variables/values?</p> http://stackoverflow.com/questions/1566861/asp-net-enabling-trace-in-code-behind 1 ASP.Net Enabling Trace in Code Behind Birk 2009-10-14T14:57:06Z 2009-10-14T15:36:28Z <p>I'm looking for a way to enable trace for an ASP.Net page via codebehind without using the page or webconfig methods.</p> <p>My end goal is to have a page that reacts to a querystring element such as ?trace=true then show the tracing information, but prior to that the page would display normally.</p> <p>I've done some googling and my combination of words ends up with tutorials on using trace in general so any help would be much appreciated.</p> <p>Thanks -Birk</p> http://stackoverflow.com/questions/1542454/process-execution-tracing-tools 1 Process execution tracing tools Stefan Thyberg 2009-10-09T08:00:21Z 2009-10-10T16:18:55Z <p>I am currently in the process of investigating a very peculiar problem on our lab servers. Whenever we run a java program on a machine with a 64-bit SUSE SLES11 installation that has been accessed with Citrix, it just hangs. I have the latest updates on the machine but it doesn't help. If any of these circumstances change, it works: 32-bit OS, SLES10.2, access via Cygwin/Exceed and other X applications such as xclock work fine.</p> <p>This might look like a ServerFault question so far, but what I'm actually looking for is suggestions on software I can use to trace what this software is actually doing. Where it hangs is on a "FUTEX_WAIT" (found by using <a href="http://en.wikipedia.org/wiki/Strace" rel="nofollow">strace</a>):</p> <pre><code>futex(0x7f4e3eaab9e0, FUTEX_WAIT, 19686, NULL </code></pre> <p>The cursor just stops in the trace just after the NULL and just stays there indefinitely. I have found a previous <a href="https://bugzilla.redhat.com/show%5Fbug.cgi?id=492018" rel="nofollow">bug report</a> that looks a little similar to this problem, but the circumstances are very different.</p> <p>UPDATE: Apparently, futex_wait problems are a sign of strange race conditions in the kernel/libc locking up processes. I will have to try with a newer kernel/libc and see if either of that makes any difference.</p> http://stackoverflow.com/questions/764382/automate-tracing-in-gdb 1 Automate tracing in GDB sice 2009-04-18T22:42:11Z 2009-10-09T19:50:55Z <p>Hi,</p> <p>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.</p> <p>Even just a simple way of automating the 'n' command so you can see what order routines are called.</p> <p>I realise that you can issues 'n x' where x is the number of times GDB steps through, but the trouble with that is is shows the command but not the address of the routine! But if you press 'n' manually in GDB (then press return to issue the previous command) it shows the address.</p> <p>I have tried the following in GDB:</p> <p>(after setting a breakpoint at say 0x0123456)<br /> b *0x0123456</p> <p>GDB says I type:</p> <p>commands 1<br /> n 1000<br /> c<br /> end </p> <p>but it doesn't loop as expected, and it doesn't show the address location :-(.</p> <p>Any help would be appreciated! Surely it must be simple to automatically log the order routines are called??</p> <p>Cheers,</p> <p>Sice</p> http://stackoverflow.com/questions/1235721/asp-net-profile-trace-framework 0 ASP.NET Profile/Trace Framework Tim Boland 2009-08-05T21:00:02Z 2009-10-09T07:00:04Z <p>I'm looking for a ASP.NET module that will benchmark results, session, sql queries &amp; other stuff &amp; spit out on the page. I know Trace will give you some of that but not the sql part. I know Jeff had something similar for alpha stackoverflow, just wondering if there was a http module already out there that did this.</p> <p>Similar to CodeIgniter profile class = The Profiler Class will display benchmark results, queries you have run, and $_POST data at the bottom of your pages. This information can be useful during development in order to help with debugging and optimization.</p> <p><a href="http://codeigniter.com/user%5Fguide/general/profiling.html" rel="nofollow">http://codeigniter.com/user_guide/general/profiling.html</a></p> http://stackoverflow.com/questions/1533284/trace-to-opera-dragonfly 0 Trace to Opera Dragonfly Jeremy White 2009-10-07T18:12:00Z 2009-10-08T21:43:26Z <p>I am using Opera on a Windows PC and developing for a device. I can telnet into the device and manually run the browser which gives me the browser output.</p> <p>Is it possible to trace messages into both Dragonfly and the Opera console? I can see a window.alert() message show up in the console, but I would also like to trace messages for simpler debugging and status tracking both within Dragonfly on PC and Opera on the device.</p> http://stackoverflow.com/questions/559148/how-can-i-add-a-trace-to-every-method-call-in-c 4 How can I add a Trace() to every method call in C#? Jon Tackabury 2009-02-17T23:12:22Z 2009-10-08T21:00:05Z <p>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 possible with C#?</p>