Beispiel #1
0
 /// <summary>
 /// Add an error message to the log file indicating an inability to create a Revit element from an IFCRoot.
 /// Used when the main Revit element could be created, but an associated element could not (example: a View for a Level).
 /// </summary>
 /// <param name="root">The IFCRoot object.</param>
 public void LogAssociatedCreationError(IFCRoot root, Type classType)
 {
     if (LoggingEnabled && m_LogFile != null)
     {
         LogError(root.Id, "couldn't create associated Revit element(s) of type " + classType.ToString(), false);
     }
 }
Beispiel #2
0
 /// <summary>
 /// Add an error message to the log file indicating an inability to create a Revit element from an IFCRoot.
 /// Used when the main Revit element could be created, but an associated element could not (example: a View for a Level).
 /// </summary>
 /// <param name="root">The IFCRoot object.</param>
 public void LogAssociatedCreationError(IFCRoot root, Type classType)
 {
     LogError(root.Id, "couldn't create associated Revit element(s) of type " + classType.ToString(), false);
 }