We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 956a2e8 commit a9e4417Copy full SHA for a9e4417
1 file changed
digicert-certcentral-caplugin/CertCentralCAPlugin.cs
@@ -1206,7 +1206,7 @@ private async Task<EnrollmentResult> ExtractSmimeEnrollmentResult(CertCentralCli
1206
1207
if (orderResponse.Status == CertCentralBaseResponse.StatusType.ERROR)
1208
{
1209
- _logger.LogError($"Error from CertCentral client: {orderResponse.Errors.First().message}");
+ _logger.LogError($"Error from CertCentral client: {orderResponse.Errors.First().code}: {orderResponse.Errors.First().message}");
1210
1211
status = (int)EndEntityStatus.FAILED;
1212
statusMessage = orderResponse.Errors[0].message;
0 commit comments