You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
As an extension developer using the Inspector, I want to not just know that "Some arguments of method 'Debugger.setBreakpointByUrl' can't be processed", I also want to see the part where it says "Parameter 'lineNumber' has wrong type. It must be 'Number'."
Fix: change _onError in LiveDevelopment.js to this:
function _onError(error) {
var message = error.message;
// Additional information, like exactly which parameter could not be processed.
if (error.data) {
message += "\n" + error.data;
}
console.error(message);
}
The text was updated successfully, but these errors were encountered:
Thank you for contributing. This looks like a great idea. Can you submit a pull request for it? This will make it easier for us to see the exact differences when reviewing, make it easier to merge, and also give you credit for the submission.
As an extension developer using the Inspector, I want to not just know that "Some arguments of method 'Debugger.setBreakpointByUrl' can't be processed", I also want to see the part where it says "Parameter 'lineNumber' has wrong type. It must be 'Number'."
Fix: change
_onError
in LiveDevelopment.js to this:The text was updated successfully, but these errors were encountered: