aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}