We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c226199 + ae7f8e5 commit 36dd565Copy full SHA for 36dd565
Stack/Opc.Ua.Core/Stack/Server/ServerBase.cs
@@ -1324,7 +1324,10 @@ protected virtual void OnServerStarting(ApplicationConfiguration configuration)
1324
// only list warning for errors to avoid that the server can not start
1325
foreach (var error in validationErrors)
1326
{
1327
- Utils.LogCertificate(LogLevel.Warning, "- " + error.Value.Message, error.Key);
+ if (error.Value != null)
1328
+ {
1329
+ Utils.LogCertificate(LogLevel.Warning, "- " + error.Value.Message, error.Key);
1330
+ }
1331
}
1332
1333
0 commit comments