tem_log_write_for Subroutine

private subroutine tem_log_write_for(me, msg)

Write msg unconditionally to the logger given in me.

Arguments

Type IntentOptional Attributes Name
type(tem_logging_type), intent(in) :: me
character(len=*), intent(in) :: msg

Called by

proc~~tem_log_write_for~~CalledByGraph proc~tem_log_write_for tem_log_write_for interface~tem_log_write tem_log_write interface~tem_log_write->proc~tem_log_write_for

Contents

Source Code


Source Code

  subroutine tem_log_write_for(me, msg)
    ! ---------------------------------------------------------------------------
    !>
    type(tem_logging_type), intent(in) :: me
    !>
    character(len=*), intent(in) :: msg
    ! ---------------------------------------------------------------------------

    write(me%funit(0), '(a)') msg

  end subroutine tem_log_write_for