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
1 answer

Tracing stdout and stderr in Tcl

I'm not sure if this absurd. Isn't it possible to trace the read and write of stdout and stderr in Tcl? I have tried the below and found no clue. % proc tracer {varname args} { upvar #0 $varname var puts "$varname value : $var" } % trace…
Dinesh
  • 16,014
  • 23
  • 80
  • 122
1
vote
1 answer

How to read atrace data in compressed format

I am using atrace -z to get compressed trace file. Is there any way to decompress this file to recover original data
Anonymous
  • 53
  • 1
  • 7
1
vote
2 answers

Can tracing via TraceSource be configured through code from external assembly

Most TraceSource tracing examples show how it is done via configuration. I am trying to achieve this via code. I have a simple assembly as follows: using System; using System.Diagnostics; using System.Threading; namespace TracingLib { public…
deostroll
  • 11,661
  • 21
  • 90
  • 161
1
vote
0 answers

ltrace : only show direct calls from a program to a library, and no inter-library call

When called with no argument other than the program to run, ltrace seems to display only the calls made by the program into shared libraries, and not the inter-library calls. I'd like to filter down these results by selecting the library the calls…
Romain Deterre
  • 546
  • 4
  • 16
1
vote
1 answer

Is there a tool to highlight code that has been run?

We write code, and we write tests. When you write tests, you're thinking about both the expected usage of the thing you're testing - and you're also thinking about the internal implementation of that thing, writing your test to try exposing bad…
Edward Ned Harvey
  • 6,525
  • 5
  • 36
  • 45
1
vote
2 answers

How to trace a SQL which causes error

My database has many kinds of clients and sometimes they use a wrong SQL string. but those clients were written in different languages such as C++, C, Java, .Net it's not possible that I learn all of them. When a error happened ORA-00942 for…
user1021531
  • 487
  • 1
  • 7
  • 16
1
vote
1 answer

Page Render Time in ASP.MVC in trace

I want to check render time of each page in asp.net mvc application. i am using asp.net tracing. i have override the OnActionExecuting and OnActionExecuted methods on the BaseController class. protected override void…
Pankaj
  • 4,419
  • 16
  • 50
  • 72
1
vote
1 answer

IIS 8.5 Failed Request Tracing reports 0 time taken

I installed some Failed Request Tracing (in IIS 8.5 on Windows Server 2012) to try and analyze why some page loads take longer than others. We have a situation were sometimes a page will load in a few seconds, and then other times it will take 20…
Cronk
  • 453
  • 1
  • 6
  • 16
1
vote
2 answers

WPP tracing for linux

I'm looking for a way to output traces to a log file in my code, which runs on linux. I don't want to include the printing information in the binary, in every place I deploy it. It windows, I simply used WPP to trace without putting the actual…
1
vote
4 answers

java tracing spaghetti code

Folks, I have just joined this company which has a huge source tree based upon JSP/Servlet and EJB 1.2. No documentation exists. The code has been written over seven years, with a large number of undocumented changes. Are there any tool tah can…
Amarsh
  • 11,214
  • 18
  • 53
  • 78
1
vote
1 answer

Finding out which higher level function is making lots of low level calls

I have a function that is being called more than a thousand times, slowing everything down. However, it is a low level function, and do not know which of my high level function is lopping and making these calls. How can i find out?
meow
  • 27,476
  • 33
  • 116
  • 177
1
vote
2 answers

How to enable TRACE_EVENT1() in WebRTC codes?

In WebRTC codes there is a macro TRACE_EVENT1(). Probably this suppose to print somewhere info traces for events. How to enable TRACE_EVENT1() and make it work? Is it possible to print the event tracing in a file?
L_A_Hooper
  • 81
  • 1
  • 9
1
vote
0 answers

Trace the logs based on MessageID at server side in wso2 esb

I'm using wso2esb4.7.0. Wish to trace the logs at server side.for this i have created a simple service in which I have put log at inSequence,sequence1,sequence2 and outSequence.My output is look like : [2015-02-18 11:08:10,937] INFO - LogMediator…
user3129056
  • 447
  • 3
  • 6
  • 19
1
vote
1 answer

Unknown permission android.permission.ACCESS_SUPERUSER in package com.powervr.PVRHub

While trying to utilise PVRHub Imagination tool for OpenGL ES tracing I meet a problems dealing with it. First APK launch gives warning about unknown permission android.permission.ACCESS_SUPERUSER and notification message about disabling to get…
Yehor Nemov
  • 907
  • 2
  • 16
  • 31
1
vote
1 answer

How do I generate trace file of an AVC bitstream in JSVM?

I have got stuck in this question for about a month. I want to generate trace file of an AVC bitstream in JSVM. It always shows: " No scalability SEI message found! Extractor exit. " Please kindly help me. Elvin
Elvin
  • 363
  • 1
  • 2
  • 8