Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
FEM: vtk result pipeline, use log instead of message for debug
  • Loading branch information
berndhahnebach committed Jul 3, 2019
1 parent 68f3ffb commit 3765de9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mod/Fem/App/FemVTKTools.cpp
Expand Up @@ -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
Expand Down Expand Up @@ -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");
Expand Down

0 comments on commit 3765de9

Please sign in to comment.