ref: Implement trace control in javascript.
This CL includes logic to properly control setting the trace flags
in javascript. You can also control tracing by setting a regular
expression to match span names and annotations. I still need
to add some tests.
Change-Id: I3a1d3a6a4652462d9fc93e2c88e170881005bea8
MultiPart: 2/3
diff --git a/profiles/internal/ipc/server.go b/profiles/internal/ipc/server.go
index 29f133a..81daa28 100644
--- a/profiles/internal/ipc/server.go
+++ b/profiles/internal/ipc/server.go
@@ -30,7 +30,6 @@
"v.io/x/ref/lib/stats"
"v.io/x/ref/profiles/internal/ipc/stream/vc"
inaming "v.io/x/ref/profiles/internal/naming"
- ivtrace "v.io/x/ref/profiles/internal/vtrace"
// TODO(cnicolaou): finish verror2 -> verror transition, in particular
// for communicating from server to client.
@@ -957,7 +956,7 @@
var traceResponse vtrace.Response
if fs.allowDebug {
- traceResponse = ivtrace.Response(fs.T)
+ traceResponse = vtrace.GetResponse(fs.T)
}
// Respond to the client with the response header and positional results.