-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Empty log when using Theseus #85
Comments
Just want to confirm I have the same issue too. Brackets version: 1.7 experimental build 1.7.0-16898 (release b0a363b71) |
+1 |
Same issue here. Waiting replies... |
same here, didnt find any solutions yet in file function _invoke(functionName, args, callback) {
if (["initializingTracer", "initializingHits", "initializingExceptions", "connected"].indexOf(fsm.state) !== -1) {
Inspector.Runtime.callFunctionOn(_tracerObjectId, TRACER_NAME + "." + functionName, args, true, true, function (res) {
if (!res.wasThrown) {
callback && callback(res.result.value);
} else {
console.log('Inspector.Runtime.callFunctionOn exception', res);
callback && callback();
}
});
} else {
callback && callback();
}
}
I dont know if its fully related, but its an error :) |
I also get this error. Brackets Release 1.8 build 1.8.0-17108 |
+1 |
When I debug javascript with, I do get to see the labels indicating calls. But when I click on a label I see an empty log, so no information about the calls at all.
In de Development Tools of Brackets I see this error:
Agent-chrome.js:274 Uncaught TypeError: Cannot read property 'wasThrown' of undefined
I suspect this to be the cause of the problem.
The text was updated successfully, but these errors were encountered: