diff --git a/Geo/GModel.cpp b/Geo/GModel.cpp
index cdbd9c3750cf9facdc4be8a6b8fc8176652c6ec8..a06251f2e723efe7a2234d6f9568047496afae22 100644
--- a/Geo/GModel.cpp
+++ b/Geo/GModel.cpp
@@ -1138,8 +1138,10 @@ void GModel::createTopologyFromFaces(std::vector<discreteFace*> &discFaces)
   // associates the MEdges with the tags of the adjacent faces
   std::map<MEdge, std::vector<int>, Less_Edge > map_edges;
   for (std::vector<discreteFace*>::iterator it = discFaces.begin(); 
-       it != discFaces.end(); it++)
+       it != discFaces.end(); it++){
+    printf("face %g recom =%d\n", (*it)->tag(),(*it)->meshAttributes.Recombine );
     (*it)->findEdges(map_edges);
+  }
 
   //return if no boundary edges (torus, sphere, ...)
   if (map_edges.empty()) return;