FEM: material task panels, add some newlines on logs

This commit is contained in:
Bernd Hahnebach
2020-01-05 19:25:17 +01:00
parent ccc0064dd3
commit 1b647ef725
2 changed files with 3 additions and 3 deletions

View File

@@ -209,7 +209,7 @@ class _TaskPanelFemMaterial:
# search for exact this mat_card in all known cards, choose the current material
self.card_path = self.get_material_card(self.material)
FreeCAD.Console.PrintLog("card_path: {}".format(self.card_path))
FreeCAD.Console.PrintLog("card_path: {}\n".format(self.card_path))
if not self.card_path:
# we have not found our material in self.materials dict :-(
# we're going to add a user-defined temporary material: a document material

View File

@@ -176,7 +176,7 @@ class _TaskPanelFemMaterialReinforced:
# search for exact the mat_card_m and mat_card_r in all known cards
# choose the current matrix material
self.card_path_m = self.get_material_card(self.material_m)
FreeCAD.Console.PrintLog("card_path: {}".format(self.card_path_m))
FreeCAD.Console.PrintLog("card_path: {}\n".format(self.card_path_m))
if not self.card_path_m:
# we have not found our material in self.materials dict :-(
# we're going to add a user-defined temporary material: a document material
@@ -207,7 +207,7 @@ class _TaskPanelFemMaterialReinforced:
# choose the current reinforcement material
self.card_path_r = self.get_material_card(self.material_r)
FreeCAD.Console.PrintLog("card_path: {}".format(self.card_path_r))
FreeCAD.Console.PrintLog("card_path: {}\n".format(self.card_path_r))
if not self.card_path_r:
# we have not found our material in self.materials dict :-(
# we're going to add a user-defined temporary material: a document material