Cleanup output
This commit is contained in:
@@ -249,7 +249,7 @@ namespace ExportDXF.Forms
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Print("Found " + bomTables.Count);
|
Print($"Found {bomTables.Count} BOM table(s)");
|
||||||
Print("");
|
Print("");
|
||||||
|
|
||||||
var items = new List<Item>();
|
var items = new List<Item>();
|
||||||
@@ -262,11 +262,9 @@ namespace ExportDXF.Forms
|
|||||||
Print(bom.BomFeature.Name);
|
Print(bom.BomFeature.Name);
|
||||||
Print("Fetching components...");
|
Print("Fetching components...");
|
||||||
items.AddRange(GetItems(bom));
|
items.AddRange(GetItems(bom));
|
||||||
Print("Found " + items.Count);
|
Print($"Found {items.Count} component(s)");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Print("Found " + items.Count + " total");
|
|
||||||
ExportToDXF(items);
|
ExportToDXF(items);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user