aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--schedule.ccl1
-rw-r--r--src/SetLocalSpatialOrder.c6
2 files changed, 5 insertions, 2 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 1c36b08..518c86e 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -7,3 +7,4 @@ schedule ADMMacros_SetLocalSpatialOrder AT BASEGRID
{
LANG: C
} "Initialize the local_spatial_order"
+
diff --git a/src/SetLocalSpatialOrder.c b/src/SetLocalSpatialOrder.c
index 2a91578..f6e7175 100644
--- a/src/SetLocalSpatialOrder.c
+++ b/src/SetLocalSpatialOrder.c
@@ -64,7 +64,9 @@ void ADMMacros_SetLocalSpatialOrder(CCTK_ARGUMENTS)
DECLARE_CCTK_PARAMETERS;
*local_spatial_order = spatial_order;
-
- return;
+ CCTK_VInfo(CCTK_THORNSTRING, "Spatial finite differencing order: %d",
+ spatial_order);
+
+ return;
}