openapi: Fix error logging
This commit is contained in:
parent
56f617060a
commit
42c25b2536
1 changed files with 1 additions and 1 deletions
|
@ -623,7 +623,7 @@ exports.expressCreateServer = (hookName, args, cb) => {
|
|||
} else {
|
||||
// an unknown error happened
|
||||
// log it and throw internal error
|
||||
apiLogger.error(err);
|
||||
apiLogger.error(err.stack || err.toString());
|
||||
throw new createHTTPError.InternalError('internal error');
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue