Update error msg
This commit is contained in:
Родитель
a5db556a4f
Коммит
daac75ed3b
|
@ -139,7 +139,8 @@ export function errorHandler(
|
|||
}
|
||||
} else {
|
||||
instrumentationContext.requestResult = false;
|
||||
instrumentationContext.error = `Overreact general error: [${JSON.stringify(error)}]`;
|
||||
const errMsg = _.isError(error) ? error : JSON.stringify(error);
|
||||
instrumentationContext.error = `Overreact general error: ${errMsg}`;
|
||||
}
|
||||
|
||||
const logFunc = instrumentationContext.requestResult ? traceFunc : errorFunc;
|
||||
|
|
Загрузка…
Ссылка в новой задаче