Add more logs to debug oauth-client error
This commit is contained in:
parent
97583d0023
commit
89b9eab5a7
|
@ -26,7 +26,11 @@ async function getLocalClient (req: express.Request, res: express.Response, next
|
|||
|
||||
// Don't make this check if this is a test instance
|
||||
if (!isTestOrDevInstance() && req.get('host') !== headerHostShouldBe) {
|
||||
logger.info('Getting client tokens for host %s is forbidden (expected %s).', req.get('host'), headerHostShouldBe)
|
||||
logger.info(
|
||||
'Getting client tokens for host %s is forbidden (expected %s).', req.get('host'), headerHostShouldBe,
|
||||
{ webserverConfig: CONFIG.WEBSERVER }
|
||||
)
|
||||
|
||||
return res.fail({
|
||||
status: HttpStatusCode.FORBIDDEN_403,
|
||||
message: `Getting client tokens for host ${req.get('host')} is forbidden`
|
||||
|
|
Loading…
Reference in New Issue