aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknarf <knarf@b1d164ef-f17a-46e7-89d4-021c7118ef4e>2012-11-23 20:49:32 +0000
committerknarf <knarf@b1d164ef-f17a-46e7-89d4-021c7118ef4e>2012-11-23 20:49:32 +0000
commit672b64b5c786096a4ae124c5fc1e6d7ea1bb0c19 (patch)
tree14601f1e073571026433b82268c31685be077caf
parent761c1b729e8077ddb389f5b9c91be0cd3658ba42 (diff)
only output order for root processor, not on everyHEADmaster
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinBase/ADMMacros/trunk@115 b1d164ef-f17a-46e7-89d4-021c7118ef4e
-rw-r--r--src/SetLocalSpatialOrder.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/SetLocalSpatialOrder.c b/src/SetLocalSpatialOrder.c
index 779479c..dc09699 100644
--- a/src/SetLocalSpatialOrder.c
+++ b/src/SetLocalSpatialOrder.c
@@ -65,8 +65,9 @@ void ADMMacros_SetLocalSpatialOrder(CCTK_ARGUMENTS)
*local_spatial_order = spatial_order;
- CCTK_VInfo(CCTK_THORNSTRING, "Spatial finite differencing order: %d",
- (int)spatial_order);
+ if (CCTK_MyProc(cctkGH)==0)
+ CCTK_VInfo(CCTK_THORNSTRING, "Spatial finite differencing order: %d",
+ (int)spatial_order);
return;
}