chore: log authn-http parsing failed reason
This commit is contained in:
parent
d6b222d1ff
commit
da4efc11c2
|
@ -361,7 +361,12 @@ handle_response(Headers, Body) ->
|
||||||
_ ->
|
_ ->
|
||||||
ignore
|
ignore
|
||||||
end;
|
end;
|
||||||
{error, _Reason} ->
|
{error, Reason} ->
|
||||||
|
?TRACE_AUTHN_PROVIDER(
|
||||||
|
error,
|
||||||
|
"parse_http_response_failed",
|
||||||
|
#{content_type => ContentType, body => Body, reason => Reason}
|
||||||
|
),
|
||||||
ignore
|
ignore
|
||||||
end.
|
end.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue