Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce log noise #2927

Merged
merged 9 commits into from
Feb 11, 2025
5 changes: 2 additions & 3 deletions src/soilbiogeochem/CNSoilMatrixMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ module CNSoilMatrixMod
use shr_log_mod , only : errMsg => shr_log_errMsg
use decompMod , only : bounds_type
use abortutils , only : endrun
use spmdMod , only : masterproc
use clm_time_manager , only : get_step_size, is_end_curr_month,get_curr_date,update_DA_nstep
use clm_time_manager , only : is_first_restart_step,is_beg_curr_year,is_end_curr_year,is_first_step_of_this_run_segment
use clm_varpar , only : ndecomp_pools, nlevdecomp, ndecomp_pools_vr !number of biogeochemically active soil layers
Expand Down Expand Up @@ -64,7 +65,7 @@ subroutine CNSoilMatrixInit( )
! !LOCAL VARIABLES:
!-----------------------------------------------------------------------

if ( use_soil_matrixcn ) then
if ( use_soil_matrixcn .and. masterproc) then
write(iulog,*) 'CN Soil matrix solution is on'
write(iulog,*) '*****************************'
if ( spinup_matrixcn ) then
Expand All @@ -79,8 +80,6 @@ subroutine CNSoilMatrixInit( )
else
write(iulog,*) ' no extra matrix solution tracability output'
end if
else
write(iulog,*) 'CN Soil matrix solution is off'
end if
end subroutine CNSoilMatrixInit

Expand Down
6 changes: 0 additions & 6 deletions src/utils/clmfates_interfaceMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1279,11 +1279,6 @@ subroutine dynamics_driv(this, nc, bounds_clump, &
this%fates(nc)%sites, &
this%fates(nc)%bc_in )

if (masterproc) then
write(iulog, *) 'clm: leaving fates model', bounds_clump%begg, &
bounds_clump%endg
end if

call t_stopf('fates_dynamics_daily_driver')

return
Expand Down Expand Up @@ -3138,7 +3133,6 @@ subroutine Init2(this, bounds, NLFilename)

call t_startf('fates_init2')

write(iulog,*) 'Init2: calling FireInit'
call this%fates_fire_data_method%FireInit(bounds, NLFilename)

call t_stopf('fates_init2')
Expand Down
Loading