diff --git a/AppService.Acmebot/SharedFunctions.cs b/AppService.Acmebot/SharedFunctions.cs index 4a7bac0..589668d 100644 --- a/AppService.Acmebot/SharedFunctions.cs +++ b/AppService.Acmebot/SharedFunctions.cs @@ -365,7 +365,7 @@ public async Task CheckDnsChallenge([ActivityTrigger] IList // レコードに今回のチャレンジが含まれていない場合もエラー if (!txtRecords.Any(x => x.Text.Contains(challengeResult.DnsRecordValue))) { - throw new RetriableActivityException($"{challengeResult.DnsRecordName} value is not correct."); + throw new RetriableActivityException($"{challengeResult.DnsRecordName} is not correct. Expected: \"{challengeResult.DnsRecordValue}\", Actual: \"{string.Join(",", txtRecords.SelectMany(x => x.Text))}\""); } } }