aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetIOASCII
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2008-10-24 15:26:31 +0200
committerErik Schnetter <schnetter@cct.lsu.edu>2008-10-24 15:26:31 +0200
commita315ae05e1c2244e71a625eb7a27b4884410ccc8 (patch)
treec227a0b3574a0b564cbfb9cb0b1fa2bdfbacabe3 /Carpet/CarpetIOASCII
parent2626e1b6767feb53db96914d908822a1e64309c2 (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;