1 subroutine wrf_debug(i, msg)
6 integer, intent(in) :: i
7 character (len=*), intent(in) :: msg
9 write(6,*) 'WRF_DEBUG:'//msg
11 end subroutine wrf_debug
14 subroutine wrf_message(msg)
19 character (len=*), intent(in) :: msg
21 write(6,*) 'WRF_MESSAGE:'//msg
23 end subroutine wrf_message
26 subroutine wrf_error_fatal(msg)
31 character (len=*), intent(in) :: msg
33 write(6,*) 'WRF_ERROR_FATAL:'//msg
37 end subroutine wrf_error_fatal
40 subroutine wrf_error_fatal3(msg)
45 character (len=*), intent(in) :: msg
47 write(6,*) 'WRF_ERROR_FATAL:'//msg
51 end subroutine wrf_error_fatal3