Skip to content

Commit

Permalink
The exported model doesn't contain all nodes #653
Browse files Browse the repository at this point in the history
work in progress - unimportant changes.
  • Loading branch information
mpostol committed Mar 31, 2022
1 parent 4ffb14c commit 69d4315
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions SemanticData/UANodeSetValidation/AddressSpaceContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,9 @@ where Object.ReferenceEquals(node.UANode, null)
string message = null;
foreach (IUANodeBase node in allNodesInConcern)
{
message = $"Finishing Validator.ValidateExportModel - the {node} is not added to the exported model";
m_TraceEvent.TraceData(TraceEventType.Warning, 1594962400, message);
message = $"{1594962400} - Finishing Validator.ValidateExportModel - the {node} is not added to the exported model";
TraceMessage traceMessage = TraceMessage.DiagnosticTraceMessage(message);
m_TraceEvent.WriteTraceMessage(traceMessage);
}
if (m_TraceEvent.Errors == 0)
{
Expand Down

0 comments on commit 69d4315

Please sign in to comment.