Skip to content

Commit

Permalink
log fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dgaley committed Nov 20, 2024
1 parent b9bad94 commit be6c879
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion globalsign-atlas-cagateway/GlobalSignAtlasCAConnector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ public override EnrollmentResult Enroll(ICertificateDataReader certificateDataRe
Logger.Trace("Enrollment parameters:");
Logger.Trace($"CSR: {csr}");
Logger.Trace($"Subject: {subject}");
Logger.Trace($"DNS SANs: {string.Join(",", san["dns"])}");
if (san.ContainsKey("dns"))
{
Logger.Trace($"DNS SANs: {string.Join(",", san["dns"])}");
}
Logger.Trace($"Product: {productInfo.ProductID}");
Logger.Trace($"Product Params: {string.Join(";", productInfo.ProductParameters.Select(p => p.Key.ToString() + "=" + p.Value.ToString()))}");

Expand Down

0 comments on commit be6c879

Please sign in to comment.