From c6ccde5a73812f5bf507967cfd8a2b539b0d012d Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Fri, 28 Oct 2016 05:41:24 +0000
Subject: [PATCH] warning -> info for missing periodic counterparts

---
 Geo/GModelIO_MSH.cpp | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/Geo/GModelIO_MSH.cpp b/Geo/GModelIO_MSH.cpp
index 24ac4846fe..f14f1db760 100644
--- a/Geo/GModelIO_MSH.cpp
+++ b/Geo/GModelIO_MSH.cpp
@@ -152,8 +152,12 @@ void readMSHPeriodicNodes(FILE *fp, GModel *gm)
       if (completePer) s->correspondingVertices[mv1] = mv2;
     }
     if (!completePer) {
-      if (!s) Msg::Warning("Could not find periodic slave entity %d of dimension %d",slave,dim);
-      if (!m) Msg::Warning("Could not find periodic master entity %d of dimension %d",master,dim);
+      if (!s)
+        Msg::Info("Could not find periodic slave entity %d of dimension %d",
+                     slave, dim);
+      if (!m)
+        Msg::Info("Could not find periodic master entity %d of dimension %d",
+                  master, dim);
     }
   }
 }
-- 
GitLab