From a641e40e79621e8ebb96b8fd38ae9b3a3fde3bd6 Mon Sep 17 00:00:00 2001
From: Axel Kohlmeyer <akohlmey@gmail.com>
Date: Fri, 16 Feb 2018 14:11:58 +0100
Subject: [PATCH] use Error::message() instead of Error::warning() to report
 whether coulomb tables are used or not

---
 src/kspace.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/kspace.cpp b/src/kspace.cpp
index c2113cdf76..1ce69ac818 100644
--- a/src/kspace.cpp
+++ b/src/kspace.cpp
@@ -318,7 +318,7 @@ double KSpace::estimate_table_accuracy(double q2_over_sqrt, double spr)
       sprintf(str,"Using %d-bit tables for long-range coulomb",nctb);
     else
       sprintf(str,"Using polynomial approximation for long-range coulomb");
-    error->warning(FLERR,str);
+    error->message(FLERR,str);
   }
 
   if (nctb) {
-- 
GitLab