subroutine ESMF_InfoPrint(info, keywordEnforcer, indent, preString, unit, rc)
! !ARGUMENTS:
type(ESMF_Info), intent(in) :: info
type(ESMF_KeywordEnforcer), optional:: keywordEnforcer ! must use keywords below
character(*), intent(in), optional :: preString
character(*), intent(out), optional :: unit
integer, intent(in), optional :: indent
integer, intent(out), optional :: rc
!
! !DESCRIPTION:
! Print \texttt{ESMF\_Info} contents in JSON format.
!
! The arguments are:
! \begin{description}
! \item [info]
! Target \texttt{ESMF\_Info} object.
! \item [{[indent]}]
! Default is 0. Specify a "pretty print" indentation for the JSON output string.
! \item [{[preString]}]
! Optionally prepended string. Default to empty string.
! \item [{[unit]}]
! Internal unit, i.e. a string. Default to printing to stdout.
! \item [{[rc]}]
! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors.
! \end{description}
!EOP
integer :: localrc, local_indent
character(:), allocatable :: output, local_preString
localrc = ESMF_FAILURE
if (present(rc)) rc = ESMF_FAILURE
if (present(indent)) then
local_indent = indent
else
local_indent = 4
end if
if (present(preString)) then
local_preString = preString
else
local_preString = ""
endif
output = ESMF_InfoDump(info, indent=local_indent, rc=localrc)
if (ESMF_LogFoundError(localrc, ESMF_ERR_PASSTHRU, ESMF_CONTEXT, rcToReturn=rc)) return
if (present(unit)) then
unit = local_preString//output
else
print *, local_preString//output
endif
if (present(rc)) rc = ESMF_SUCCESS
end subroutine ESMF_InfoPrint