1 subroutine wrf_debug(i, msg)
8 integer, intent(in) :: i
9 character (len=*), intent(in) :: msg
11 if (debug_level > 0) then
12 write(6,*) 'WRF_DEBUG:'//msg
15 end subroutine wrf_debug
18 subroutine wrf_message(msg)
23 character (len=*), intent(in) :: msg
25 write(6,*) 'WRF_MESSAGE:'//msg
27 end subroutine wrf_message
30 subroutine wrf_error_fatal(msg)
35 character (len=*), intent(in) :: msg
37 write(6,*) 'WRF_ERROR_FATAL:'//msg
41 end subroutine wrf_error_fatal
44 subroutine wrf_error_fatal3(msg)
49 character (len=*), intent(in) :: msg
51 write(6,*) 'WRF_ERROR_FATAL:'//msg
55 end subroutine wrf_error_fatal3