aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetIOASCII
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2008-10-23 11:59:05 +0200
committerErik Schnetter <schnetter@cct.lsu.edu>2008-10-24 15:26:31 +0200
commit2834b30e4fc68405b9ae699e1827e0cb7309a189 (patch)
tree34b9b8499b41197f52b371e6c25dea4a7881c46f /Carpet/CarpetIOASCII
parent70680a9c327dbd5ccf3b09de91eb1589c7a25142 (diff)
CarpetIOASCII: Increase warning level for variables without storage
Diffstat (limited to 'Carpet/CarpetIOASCII')
-rw-r--r--Carpet/CarpetIOASCII/src/ioascii.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/Carpet/CarpetIOASCII/src/ioascii.cc b/Carpet/CarpetIOASCII/src/ioascii.cc
index 155c637f4..6aa68e537 100644
--- a/Carpet/CarpetIOASCII/src/ioascii.cc
+++ b/Carpet/CarpetIOASCII/src/ioascii.cc
@@ -428,7 +428,9 @@ namespace CarpetIOASCII {
// Check for storage
if (not CCTK_QueryGroupStorageI (cctkGH, group)) {
- CCTK_VWarn (1, __LINE__, __FILE__, CCTK_THORNSTRING,
+ // This may be okay if storage is e.g. scheduled only in the
+ // analysis bin
+ CCTK_VWarn (4, __LINE__, __FILE__, CCTK_THORNSTRING,
"Cannot output variable '%s' because it has no storage",
varname);
return 0;