Skip to content

Commit

Permalink
Support the official NUOPC Verbosity strings "off", "low", "high", "m…
Browse files Browse the repository at this point in the history
…ax" for compliance.
  • Loading branch information
theurich authored and DomHeinzeller committed Aug 30, 2019
1 parent 71a4c82 commit c3ec2c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/module_MEDIATOR.F90
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,8 @@ subroutine InitializeP0(gcomp, importState, exportState, clock, rc)
if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, &
line=__LINE__, file=__FILE__)) return ! bail out
dbug_flag = ESMF_UtilString2Int(value, &
specialStringList=(/"min","max"/), specialValueList=(/0,255/), rc=rc)
specialStringList=(/"off","low","high","max"/), &
specialValueList=(/0,1,100,255/), rc=rc)
if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, &
line=__LINE__, file=__FILE__)) return ! bail out
write(msgString,'(A,i6)') trim(subname)//' dbug_flag = ',dbug_flag
Expand Down

0 comments on commit c3ec2c4

Please sign in to comment.