diff --git a/src/mesh/GmshReader.cpp b/src/mesh/GmshReader.cpp
index 53c704e13ca0f253796d78dbc35c7673a52e8a58..c695118da58212adea5c7cf301e72d975c6ccd7c 100644
--- a/src/mesh/GmshReader.cpp
+++ b/src/mesh/GmshReader.cpp
@@ -504,10 +504,7 @@ __readPhysicalNames2_2()
     std::string physical_name;
     m_fin >> physical_name;
     physical_name = std::regex_replace(physical_name, std::regex("(\")"), "");
-    std::cout << "- " << rang::style::bold << physical_name
-              << " <-> " << physical_number << " for dimension "
-              << physical_dimension << rang::style::reset
-              << " [" << rang::fg::yellow << "IGNORED" << rang::style::reset << "]\n";
+
     PhysicalRefId physical_ref_id(physical_dimension, RefId(physical_number, physical_name));
     auto searched_physical_ref_id = m_physical_ref_map.find(physical_number);
     if (searched_physical_ref_id != m_physical_ref_map.end()) {