Cleanup output

This commit is contained in:
AJ
2019-11-14 13:55:26 -05:00
parent 7a2bf23d0a
commit ed32bb1c27

View File

@@ -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);
} }