From 3bef6ef2d088b15b04fd407e5c4fc720e8f4f46d Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Fri, 28 Mar 2014 10:28:33 +0000 Subject: [PATCH] point not in domain is not an error --- Common/OctreeInternals.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/OctreeInternals.cpp b/Common/OctreeInternals.cpp index c84ab175a7..c6787997a9 100644 --- a/Common/OctreeInternals.cpp +++ b/Common/OctreeInternals.cpp @@ -391,7 +391,7 @@ void *searchAllElements(octantBucket *_buckets_head, double *_pt, globalInfo *_g ptrBucket = findElementBucket(_buckets_head, _pt); if (ptrBucket == NULL) { - Msg::Error("The point is not in the domain"); + Msg::Debug("The point is not in the domain"); return NULL; } -- GitLab