This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Description
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);
}