Skip to content

Commit

Permalink
Merge pull request #2854 from GEOS-ESM/hotfix/wjiang/rm_print
Browse files Browse the repository at this point in the history
rm debugging print statement
  • Loading branch information
mathomp4 committed May 31, 2024
2 parents df6786c + eb99e9b commit b76ba1a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Deprecated

## [2.46.2] - 2024-05-31

### Removed

- Remove excessive print statements in `generic/OpenMP_Support.F90`

## [2.46.1] - 2024-05-10

## Fixed
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ endif ()

project (
MAPL
VERSION 2.46.1
VERSION 2.46.2
LANGUAGES Fortran CXX C) # Note - CXX is required for ESMF

# Set the possible values of build type for cmake-gui
Expand Down
3 changes: 1 addition & 2 deletions generic/OpenMP_Support.F90
Original file line number Diff line number Diff line change
Expand Up @@ -537,8 +537,7 @@ function make_subgridcomps(GridComp, run_entry_points, num_grids, unusable, rc)

call ESMF_GridCompGet(GridComp, config=CF, name=comp_name, _RC)
call ESMF_InternalStateGet(GridComp, labelList=labels, _RC)
if(myPET==0) print*,__FILE__,__LINE__, 'internal states labels : <',trim(comp_name), (trim(labels(i)),i=1,size(labels)), '>'
print*,__FILE__,__LINE__, 'splitting component: <',trim(comp_name),'>'

do i = 1, num_grids
associate (gc => subgridcomps(i) )
gc = ESMF_GridCompCreate(name=trim(comp_name), config=CF, petlist=[myPet], &
Expand Down

0 comments on commit b76ba1a

Please sign in to comment.