mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 13:02:57 +00:00
Bug 1263747 - Log error messages when stringifying errors. r=bgrins
MozReview-Commit-ID: 2MB8IDKfVHo --HG-- extra : rebase_source : d7922cf9a5c1dc37283299aa97c4b596fb0b68bd
This commit is contained in:
parent
6ad68f4d61
commit
f206eaee71
@ -1073,7 +1073,7 @@ this.PushService = {
|
|||||||
Services.telemetry.getHistogramById("PUSH_API_SUBSCRIBE_FAILED").add()
|
Services.telemetry.getHistogramById("PUSH_API_SUBSCRIBE_FAILED").add()
|
||||||
if (!reply.error) {
|
if (!reply.error) {
|
||||||
console.warn("onRegisterError: Called without valid error message!",
|
console.warn("onRegisterError: Called without valid error message!",
|
||||||
reply, String(reply));
|
reply);
|
||||||
throw new Error("Registration error");
|
throw new Error("Registration error");
|
||||||
}
|
}
|
||||||
throw reply.error;
|
throw reply.error;
|
||||||
|
@ -105,6 +105,21 @@ function getCtorName(aObj) {
|
|||||||
return Object.prototype.toString.call(aObj).slice(8, -1);
|
return Object.prototype.toString.call(aObj).slice(8, -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicates whether an object is a JS or `Components.Exception` error.
|
||||||
|
*
|
||||||
|
* @param {object} aThing
|
||||||
|
The object to check
|
||||||
|
* @return {boolean}
|
||||||
|
Is this object an error?
|
||||||
|
*/
|
||||||
|
function isError(aThing) {
|
||||||
|
return aThing && (
|
||||||
|
(typeof aThing.name == "string" &&
|
||||||
|
aThing.name.startsWith("NS_ERROR_")) ||
|
||||||
|
getCtorName(aThing).endsWith("Error"));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A single line stringification of an object designed for use by humans
|
* A single line stringification of an object designed for use by humans
|
||||||
*
|
*
|
||||||
@ -124,6 +139,10 @@ function stringify(aThing, aAllowNewLines) {
|
|||||||
return "null";
|
return "null";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isError(aThing)) {
|
||||||
|
return "Message: " + aThing;
|
||||||
|
}
|
||||||
|
|
||||||
if (typeof aThing == "object") {
|
if (typeof aThing == "object") {
|
||||||
let type = getCtorName(aThing);
|
let type = getCtorName(aThing);
|
||||||
if (aThing instanceof Components.interfaces.nsIDOMNode && aThing.tagName) {
|
if (aThing instanceof Components.interfaces.nsIDOMNode && aThing.tagName) {
|
||||||
@ -203,9 +222,7 @@ function log(aThing) {
|
|||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (type.match("Error$") ||
|
else if (isError(aThing)) {
|
||||||
(typeof aThing.name == "string" &&
|
|
||||||
aThing.name.match("NS_ERROR_"))) {
|
|
||||||
reply += " Message: " + aThing + "\n";
|
reply += " Message: " + aThing + "\n";
|
||||||
if (aThing.stack) {
|
if (aThing.stack) {
|
||||||
reply += " Stack:\n";
|
reply += " Stack:\n";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user