diff --git a/common/Environments/Models/ComputeSystemCache.cs b/common/Environments/Models/ComputeSystemCache.cs index 2fa0b06521..2075aefd2d 100644 --- a/common/Environments/Models/ComputeSystemCache.cs +++ b/common/Environments/Models/ComputeSystemCache.cs @@ -229,8 +229,8 @@ public override string ToString() builder.AppendLine(CultureInfo.InvariantCulture, $"ComputeSystem name: {DisplayName} "); builder.AppendLine(CultureInfo.InvariantCulture, $"ComputeSystem SupplementalDisplayName: {SupplementalDisplayName} "); builder.AppendLine(CultureInfo.InvariantCulture, $"ComputeSystem associated Provider Id : {AssociatedProviderId} "); - builder.AppendLine(CultureInfo.InvariantCulture, $"ComputeSystem associated developerId LoginId: {AssociatedDeveloperId?.Value.LoginId} "); - builder.AppendLine(CultureInfo.InvariantCulture, $"ComputeSystem associated developerId Url: {AssociatedDeveloperId?.Value.Url} "); + builder.AppendLine(CultureInfo.InvariantCulture, $"ComputeSystem associated developerId LoginId: {AssociatedDeveloperId?.Value?.LoginId} "); + builder.AppendLine(CultureInfo.InvariantCulture, $"ComputeSystem associated developerId Url: {AssociatedDeveloperId?.Value?.Url} "); var supportedOperations = EnumHelper.SupportedOperationsToString(SupportedOperations.Value); builder.AppendLine(CultureInfo.InvariantCulture, $"ComputeSystem supported operations : {string.Join(",", supportedOperations)} ");