From 3765de9ed972857e5668ca2efd720f9e86910d4b Mon Sep 17 00:00:00 2001 From: Bernd Hahnebach Date: Wed, 3 Jul 2019 12:22:24 +0200 Subject: [PATCH] FEM: vtk result pipeline, use log instead of message for debug --- src/Mod/Fem/App/FemVTKTools.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Fem/App/FemVTKTools.cpp b/src/Mod/Fem/App/FemVTKTools.cpp index a0b4fd04c407..a6a513ea71fd 100644 --- a/src/Mod/Fem/App/FemVTKTools.cpp +++ b/src/Mod/Fem/App/FemVTKTools.cpp @@ -847,7 +847,7 @@ void FemVTKTools::exportFreeCADResult(const App::DocumentObject* result, vtkSmar Base::Console().Log(" The PropertyVectorList %s was exported to VTK vector list: %s\n", it->first.c_str(), it->second.c_str()); } else - Base::Console().Message(" PropertyVectorList NOT exported to vtk: %s size is: %i\n", it->first.c_str(), field->getSize()); + Base::Console().Log(" PropertyVectorList NOT exported to vtk: %s size is: %i\n", it->first.c_str(), field->getSize()); } // scalars @@ -883,7 +883,7 @@ void FemVTKTools::exportFreeCADResult(const App::DocumentObject* result, vtkSmar Base::Console().Log(" The PropertyFloatList %s was exported to VTK scalar list: %s\n", it->first.c_str(), it->second.c_str()); } else - Base::Console().Message(" PropertyFloatList NOT exported to vtk: %s size is: %i\n", it->first.c_str(), field->getSize()); + Base::Console().Log(" PropertyFloatList NOT exported to vtk: %s size is: %i\n", it->first.c_str(), field->getSize()); } Base::Console().Log("End: Create VTK result data from FreeCAD result data.\n");