Skip to content

Commit

Permalink
Merge pull request #7 from shibayan/feature/fix-error-log
Browse files Browse the repository at this point in the history
Fixed Azure DNS error log
  • Loading branch information
shibayan authored Oct 12, 2018
2 parents a097c36 + 705826a commit e631eeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AzureKeyVault.LetsEncrypt/RenewCertificates.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static async Task RunOrchestrator([OrchestrationTrigger] DurableOrchestra
// 更新対象となる証明書がない場合は終わる
if (certificates.Count == 0)
{
log.LogInformation("Certificates is not found");
log.LogInformation("Certificates are not found");

return;
}
Expand Down
2 changes: 1 addition & 1 deletion AzureKeyVault.LetsEncrypt/SharedFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public static async Task Dns01Precondition([ActivityTrigger] DurableActivityCont
{
if (!zones.Any(x => hostName.EndsWith(x.Name)))
{
log.LogError($"Azure DNS zone \"{hostNames}\" is not found");
log.LogError($"Azure DNS zone \"{hostName}\" is not found");

throw new InvalidOperationException();
}
Expand Down

0 comments on commit e631eeb

Please sign in to comment.