From b86402ecbdea67366609dbf384f4bd0d3a109080 Mon Sep 17 00:00:00 2001 From: Sam Rabin Date: Thu, 5 Oct 2023 16:09:35 -0600 Subject: [PATCH] Warn instead of fail when trying to enable tillage. --- bld/CLMBuildNamelist.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bld/CLMBuildNamelist.pm b/bld/CLMBuildNamelist.pm index 538cc59dc9..c2425ab265 100755 --- a/bld/CLMBuildNamelist.pm +++ b/bld/CLMBuildNamelist.pm @@ -2184,7 +2184,7 @@ sub setup_logic_tillage { my $tillage_mode = remove_leading_and_trailing_quotes( $nl->get_value( "tillage_mode" ) ); if ( $tillage_mode ne "" && $tillage_mode ne "off") { - $log->fatal_error( "Tillage has not yet been scientifically tested and so may not be enabled." ); + $log->warning( "Tillage has not yet been scientifically tested." ); } if ( $tillage_mode ne "off" && $tillage_mode ne "" && not &value_is_true($nl->get_value('use_crop')) ) { $log->fatal_error( "Tillage only works on crop columns, so use_crop must be true if tillage is enabled." );