aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhaas <rhaas@b61c5cb5-eaca-4651-9a7a-d64986f99364>2013-12-02 21:49:22 +0000
committerrhaas <rhaas@b61c5cb5-eaca-4651-9a7a-d64986f99364>2013-12-02 21:49:22 +0000
commitbd4d1f7110d8cf34899f072e0ef314431e9c2e42 (patch)
tree7df6c33d4e8bc97aabffff4dd52f3dd40dfdd610
parent7438b478f1d7693ee5eb72b5a37f50cd65fe65e8 (diff)
Increase warning level for synchronising groups without storage
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@529 b61c5cb5-eaca-4651-9a7a-d64986f99364
-rw-r--r--src/Comm.c2
-rw-r--r--src/PostReceiveGA.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Comm.c b/src/Comm.c
index 10aa26b..ff04905 100644
--- a/src/Comm.c
+++ b/src/Comm.c
@@ -1062,7 +1062,7 @@ static int PUGH_SyncSingleProc(pGH *pughGH, pComm *comm)
/* return if no storage assigned */
if (! GA->storage)
{
- CCTK_VWarn(2, __LINE__, __FILE__, CCTK_THORNSTRING,
+ CCTK_VWarn(CCTK_WARN_DEBUG, __LINE__, __FILE__, CCTK_THORNSTRING,
"Trying to synchronize variable '%s' with no storage", GA->name);
return (0);
}
diff --git a/src/PostReceiveGA.c b/src/PostReceiveGA.c
index c8b4641..b354fcc 100644
--- a/src/PostReceiveGA.c
+++ b/src/PostReceiveGA.c
@@ -56,7 +56,7 @@ void PostReceiveGA(pGH *pughGH, int dir, pComm *comm)
/* return if no storage assigned */
if (! GA->storage)
{
- CCTK_VWarn(2, __LINE__, __FILE__, CCTK_THORNSTRING,
+ CCTK_VWarn(CCTK_WARN_DEBUG, __LINE__, __FILE__, CCTK_THORNSTRING,
"Trying to synchronize variable '%s' with no storage", GA->name);
return;
}