Issue 105353: Add messages+details to audit logs response (#105415)

This commit is contained in:
uhari03 2022-02-23 17:53:33 -08:00 committed by GitHub
parent 2fcdbd098c
commit 016b96ca38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -197,7 +197,9 @@ func LogResponseObject(ctx context.Context, obj runtime.Object, gv schema.GroupV
// selectively copy the bounded fields. // selectively copy the bounded fields.
ae.ResponseStatus = &metav1.Status{ ae.ResponseStatus = &metav1.Status{
Status: status.Status, Status: status.Status,
Message: status.Message,
Reason: status.Reason, Reason: status.Reason,
Details: status.Details,
Code: status.Code, Code: status.Code,
} }
} }