зеркало из https://github.com/mozilla/gecko-dev.git
Bug 848861 - Send stack traces with FHR errors; r=rnewman, sr=mconnor
This commit is contained in:
Родитель
059987ecdb
Коммит
9e5f5aaf8e
|
@ -457,7 +457,7 @@ AbstractHealthReporter.prototype = Object.freeze({
|
|||
let logMessage = message;
|
||||
|
||||
if (ex) {
|
||||
recordMessage += ": " + ex.message;
|
||||
recordMessage += ": " + CommonUtils.exceptionStr(ex);
|
||||
logMessage += ": " + CommonUtils.exceptionStr(ex);
|
||||
}
|
||||
|
||||
|
|
|
@ -412,7 +412,7 @@ this.ProviderManager.prototype = Object.freeze({
|
|||
_recordProviderError: function (name, msg, ex) {
|
||||
let msg = "Provider error: " + name + ": " + msg;
|
||||
if (ex) {
|
||||
msg += ": " + ex.message;
|
||||
msg += ": " + CommonUtils.exceptionStr(ex);
|
||||
}
|
||||
this._log.warn(msg);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче