Skip to content

Commit fef0cda

Browse files
971 | fixes gender log issue (#394)
1 parent dc93db2 commit fef0cda

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/In.ProjectEKA.HipService/User/UserController.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,10 @@ public async Task OnAuthConfirmFor(JObject response)
5454
Log.Information($"Access Token is: {authOnConfirmResponse.Auth.AccessToken}");
5555
if (authOnConfirmResponse.Auth.Patient != null)
5656
{
57-
Log.Information("Patient: "+$" Name: {authOnConfirmResponse.Auth.Patient.Name},"+
57+
Log.Information("Patient Demographics Details: "+$" Name: {authOnConfirmResponse.Auth.Patient.Name},"+
5858
$"Id: {authOnConfirmResponse.Auth.Patient.Id}, "+
59-
$"Birth Year: {authOnConfirmResponse.Auth.Patient.YearOfBirth}");
59+
$"Birth Year: {authOnConfirmResponse.Auth.Patient.YearOfBirth}, "+
60+
$"Gender: {authOnConfirmResponse.Auth.Patient.Gender}, ");
6061
if (authOnConfirmResponse.Auth.Patient.Address != null)
6162
{
6263
Log.Information("Patient Address Details: "+

0 commit comments

Comments
 (0)