print a short message that there are no open channels in given block
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=int32), | intent(in) | :: | block_number_ |
block number |
subroutine no_open_channels_message(block_number_)
!! print a short message that there are no open channels in given block
!---------------------------------------------------------------------!
integer(int32), intent(in) :: block_number_
!! block number
!---------------------------------------------------------------------!
call write_message(repeat('-', 90))
call write_message("No open channels for block no." // &
integer_to_character(block_number_) )
call write_message(repeat('-', 90))
!---------------------------------------------------------------------!
end subroutine no_open_channels_message