Skip to content

Commit

Permalink
trim filename strings in control mod diagnostic output
Browse files Browse the repository at this point in the history
  • Loading branch information
glemieux committed Nov 15, 2023
1 parent 87b149f commit b061816
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/controlMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1157,10 +1157,10 @@ subroutine control_print ()
write(iulog, *) ' use_fates_nocomp = ', use_fates_nocomp
write(iulog, *) ' use_fates_sp = ', use_fates_sp
write(iulog, *) ' use_fates_luh= ', use_fates_sp
write(iulog, *) ' fluh_timeseries = ',fluh_timeseries
write(iulog, *) ' fluh_timeseries = ', trim(fluh_timeseries)
write(iulog, *) ' fates_seeddisp_cadence = ', fates_seeddisp_cadence
write(iulog, *) ' fates_seeddisp_cadence: 0, 1, 2, 3 => off, daily, monthly, or yearly dispersal'
write(iulog, *) ' fates_inventory_ctrl_filename = ',fates_inventory_ctrl_filename
write(iulog, *) ' fates_inventory_ctrl_filename = ', trim(fates_inventory_ctrl_filename)
end if
end subroutine control_print

Expand Down

0 comments on commit b061816

Please sign in to comment.