Skip to content
Snippets Groups Projects
Commit 4e73d145 authored by Dmitri Naumov's avatar Dmitri Naumov Committed by Dmitrij Naumov
Browse files

[IO] Clarify which mesh file was read.

parent 41564ecb
No related branches found
No related tags found
No related merge requests found
...@@ -206,7 +206,8 @@ MeshLib::Mesh* BoostVtuInterface::readVTUFile(const std::string &file_name) ...@@ -206,7 +206,8 @@ MeshLib::Mesh* BoostVtuInterface::readVTUFile(const std::string &file_name)
} }
} }
INFO("Reading OGS mesh finished."); INFO("Reading VTU mesh finished.");
INFO("Name: %s", BaseLib::extractBaseNameWithoutExtension(file_name).c_str());
INFO("Nr. Nodes: %d", nodes.size()); INFO("Nr. Nodes: %d", nodes.size());
INFO("Nr. Elements: %d", elements.size()); INFO("Nr. Elements: %d", elements.size());
return new MeshLib::Mesh(BaseLib::extractBaseNameWithoutExtension(file_name), nodes, return new MeshLib::Mesh(BaseLib::extractBaseNameWithoutExtension(file_name), nodes,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment