Skip to content

Commit

Permalink
fix: log error before falling back to deployment user (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdashworth authored Aug 10, 2021
1 parent 4e34b97 commit f965c1b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ public TResponse Execute<TResponse>(OrganizationRequest request, string username
}
else
{
this.logger.LogWarning(ex, $"Failed to execute {request.RequestName} as {username}.");
this.logger.LogWarning(ex, $"Failed to execute {request.RequestName} as {username}. {ex.Message}");
}

if (!fallbackToExistingUser)
Expand Down

0 comments on commit f965c1b

Please sign in to comment.