tem_log_write_primary Subroutine

private subroutine tem_log_write_primary(msg)

Write msg unconditionally to the primary logger.

Arguments

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

Called by

proc~~tem_log_write_primary~~CalledByGraph proc~tem_log_write_primary tem_log_write_primary interface~tem_log_write tem_log_write interface~tem_log_write->proc~tem_log_write_primary

Source Code

  subroutine tem_log_write_primary(msg)
    ! ---------------------------------------------------------------------------
    !>
    character(len=*), intent(in) :: msg
    ! ---------------------------------------------------------------------------

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

  end subroutine tem_log_write_primary