Skip to content

Commit

Permalink
Warn instead of fail when trying to enable tillage.
Browse files Browse the repository at this point in the history
  • Loading branch information
samsrabin committed Oct 5, 2023
1 parent d565176 commit b86402e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bld/CLMBuildNamelist.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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." );
Expand Down

0 comments on commit b86402e

Please sign in to comment.