Skip to content

Commit

Permalink
Avoid unnecessary calls to stringify
Browse files Browse the repository at this point in the history
  • Loading branch information
kuanchihwang committed Feb 18, 2025
1 parent 6f19a0b commit c3bc4e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dynamics/mpas/driver/dyn_mpas_subdriver.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1042,7 +1042,7 @@ subroutine dyn_mpas_define_scalar(self, constituent_name, is_water_species)
do i = 1, self % number_of_constituents
call self % debug_print(log_level_verbose, 'Constituent index ' // stringify([i]))
call self % debug_print(log_level_verbose, ' Constituent name: ' // &
stringify([self % constituent_name(i)]))
trim(self % constituent_name(i)))
call self % debug_print(log_level_verbose, ' Is water species: ' // &
stringify([self % is_water_species(i)]))
call self % debug_print(log_level_verbose, ' Index mapping from constituent to MPAS scalar: ' // &
Expand Down

0 comments on commit c3bc4e0

Please sign in to comment.