mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Fix a typo in error reporting when attaching to the tracer (bug 989627). r=vporof
--HG-- extra : rebase_source : 59547f9b8f21bc4205b358701d1c9aa900049e81
This commit is contained in:
parent
e76796c56a
commit
129048586d
@ -365,7 +365,8 @@ let DebuggerController = {
|
||||
_startTracingTab: function(aTraceActor, aCallback) {
|
||||
this.client.attachTracer(aTraceActor, (response, traceClient) => {
|
||||
if (!traceClient) {
|
||||
DevToolsUtils.reportError(new Error("Failed to attach to tracing actor."));
|
||||
DevToolsUtils.reportException("DebuggerController._startTracingTab",
|
||||
new Error("Failed to attach to tracing actor."));
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user