Skip to content

Commit 0a93267

Browse files
Expand error message when submit challenge fails
1 parent 591870b commit 0a93267

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Certify.Providers/ACME/Anvil/AnvilACMEProvider.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1303,7 +1303,7 @@ public async Task<StatusMessage> SubmitChallenge(ILog log, string challengeType,
13031303
}
13041304
catch (AcmeRequestException exp)
13051305
{
1306-
var msg = $"Submit Challenge failed: {exp.Error?.Detail}";
1306+
var msg = $"Submitting the challenge response to the Certificate Authority failed. This may indicate a temporary fault in their system: {exp.Error?.Type} {exp.Error?.Detail}";
13071307

13081308
log?.Error(msg);
13091309

0 commit comments

Comments
 (0)