provisioning: better logging around authentication

This commit is contained in:
Sumner Evans 2022-07-27 12:58:04 -07:00 committed by Sumner Evans
parent 7edd9f3237
commit 2a44a2bf7d
1 changed files with 2 additions and 1 deletions

View File

@ -111,8 +111,9 @@ func (prov *ProvisioningAPI) AuthMiddleware(h http.Handler) http.Handler {
auth = auth[len("Bearer "):]
}
if auth != prov.bridge.Config.Bridge.Provisioning.SharedSecret {
prov.log.Infof("Authentication token does not match shared secret")
jsonResponse(w, http.StatusForbidden, map[string]interface{}{
"error": "Invalid auth token",
"error": "Authentication token does not match shared secret",
"errcode": "M_FORBIDDEN",
})
return