Bug 848861 - Send stack traces with FHR errors; r=rnewman, sr=mconnor

This commit is contained in:
Gregory Szorc 2013-03-18 15:07:07 -07:00
Родитель 059987ecdb
Коммит 9e5f5aaf8e
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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);