We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b07c46 commit 9e6563eCopy full SHA for 9e6563e
src/common/logger.js
@@ -32,7 +32,7 @@ logger.logFullError = (err, signature) => {
32
}
33
if (err.isJoi) {
34
logger.error(
35
- `${e.name} details: ${JSON.stringify(e.details)} input:${JSON.stringify(e._object)}`
+ `${err.name} details: ${JSON.stringify(err.details)} input:${JSON.stringify(err._object)}`
36
);
37
} else if (err.isAxiosError) {
38
logger.error(`${err.message} - ${err.response.data}`);
0 commit comments