From 4e73d145a6677834150528225c62f7ac4b634e0c Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <dmitri.naumov@ufz.de>
Date: Thu, 28 Aug 2014 13:30:51 +0200
Subject: [PATCH] [IO] Clarify which mesh file was read.

---
 FileIO/XmlIO/Boost/BoostVtuInterface.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/FileIO/XmlIO/Boost/BoostVtuInterface.cpp b/FileIO/XmlIO/Boost/BoostVtuInterface.cpp
index 0334ec9d6ff..53d913138e7 100644
--- a/FileIO/XmlIO/Boost/BoostVtuInterface.cpp
+++ b/FileIO/XmlIO/Boost/BoostVtuInterface.cpp
@@ -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. Elements: %d", elements.size());
 			return new MeshLib::Mesh(BaseLib::extractBaseNameWithoutExtension(file_name), nodes,
-- 
GitLab